1、 如果A表TID是自增长,并且是连续的,B表的ID为索引select * from a, b where a.tid =b.id and a.tid > 500000 limit 200;
2、 如果A表的TID不是连续的,那么就需要使用覆盖索引.TID要么是主键,要么是辅助索引,B 表 ID 也需要有索引。select * from b , (select tid from a limit 50000, 200) a where b.id = a.tid;
MySQL 中 NOW()和 CURRENT_DATE()有什么区别?
NOW()命令用于显示当前年份,月份,日期,小时,分钟和秒。
CURRENT_DATE ()仅显示当前年份,月份和日期。
Was this helpful?
0 / 0