select * from table where col in (2,3,4,5,6)索引
select * from table where col=2 or col=3 or col=4 or col=5 or col=6 table
當col有索引的時候,in和or都會走索引,效率差很少效率
當col沒索引的時候,in 的效率比or高,in是log or 是nselect