面试题-------笔记

创建一个联合索引,index(user_id,tid)

select * from t_user_info where user_id = '1';

select * from  t_user_info where user_id = '1' and tid =  '1';

select * from  t_user_info where tid ='1' and user_id = '1';

select * from  t_user_info where tid ='1';

最后一种不走索引。

上一篇:mybatis_11.一对多的处理


下一篇:Linux下获取线程ID tid的方法