Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在Id我的表上创建一个索引。这是一个bigint。
Id
bigint
我想知道拥有此索引的最佳方法是什么,以便我可以尽快检索数据。
例如 : CREATE INDEX id_index ON lookup (id) USING BTREE;
CREATE INDEX id_index ON lookup (id) USING BTREE;
恕我直言,你想多了。碰巧 InnoDB 和 MyISAM 表只支持 BTREE 索引。如果你有MEMORY 表,你可以创建索引USING HASH,但这可能是一个普通的表。
MEMORY
USING HASH
CREATE INDEX id_index ON lookup (id);
得到你想要的。