赞
踩
id name email weixinNumber
单键索引
select * from user where name='';
create index idx_user_name on user(name)
-----------------------------------------------
复合索引
select * from user where name='' and email='';
create index idx_user_name_nameEmail on user(name,email)
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。