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.
我有两个表和这些表上的两个查询。我正在使用 SQL 工作台来查询这些表。有人能告诉我在这些表中添加 BTREE 或 HASH 索引的语法吗?
CREATE INDEX支持USING BTREE或USING HASH结束。
CREATE INDEX
USING BTREE
USING HASH
http://dev.mysql.com/doc/refman/5.0/en/create-index.html