摘要: 1.设置索引。 MySQL索引操作:给表列创建索引: 建表时创建索引: create table t(id int,name varchar(20),index idx_name (name)); 给表追加索引: alter table t add unique index idx_id(id); 阅读全文
posted @ 2020-10-13 15:14 chunming 阅读(669) 评论(0) 推荐(0)