摘要:
declare @i int --变义变量@i set @i = 99999 --初始化@i为1 while @i < 200000 --如果@i小于100,这里改成100万即是插入100万条记录 begin ------------------ insert into T_user (loginName,name,email,sex,ponenumber,password,tagdelete,userRoleId) values('kgdiwss'+convert(char(10),@i),'小明'+convert(char(10),@i),conver 阅读全文
摘要:
一.Mysql索引类型可分为: 普通索引(index) 仅仅加快查询速度主键索引(primary key) 主键索引必是唯一,唯一索引不一定是主键索引。唯一索引(unique) 行上的值不能重复全文索引(fulltext) 二.建立索引alter table 表名 add index/unique/fulltext (列名)索引名alter table 表名 add primary key (列名) //不要加索引名 三.查看索引show index from 表名四.删除索引alter table 表名 drop 索引名alter table 表名 drop primary key五.索引的 阅读全文