摘要:
创建索引: create index 索引名称 on 表名(字段列表) 普通索引 ->什么字段都可以 create index 索引名称 on 表名(字段列表) create unique index 索引名称 on 表名(字段列表) 创建唯一索引 ->字段必须唯一 alter table 表名 a 阅读全文
摘要:
mysql -uroot -p show databases use 库名 source D:\kuming.sql 阅读全文
摘要:
https://blog.csdn.net/quickzhao3223/article/details/80988797 阅读全文