大数据表查询或者分页

时间:2021-11-05 14:32:29

单表

select a.id from a where type=1 order by id 

foreach 组合成 (20,3,69)形式 

select a.title,a.id from a in(组合形式)

id 铸件索引 type普通索引

 

多表

select a.cid,b,id from a inner join b on a.cid=b.id

foreach 组合成(20,3,69)形式

select * from c where sid in (组合形式)

c 为a 和b表组合

id,sid为唯一索引 cid为普通索引