MySQL索引 2024-05-12 MySQL 1 条评论 1109 次阅读 索引就是来帮助表来快速检索数据的。创建索引(普通索引的创建方式):createcreate index indexName on tableName (columnName(length) [asc|desc]);alteralter table tableName add index indexName (columnName(length) [asc|desc]);ddl (建表时DDL语句) - 阅读全文 -