union和in相比哪个效率更高? 财富值44

2016-10-12 13:58发布

我有一个文章表,查询多条文章记录
id是主键,还有若干像title,content,author之类的字段(post表记录300W+)

select * from post  where id in (id1,id2,id3,id4)   

select * from post where id = id1 union select * from post where id = id2 union select * from post where id = id3 union select * from post where id = id4  

的效率哪一个更高?(id的个数从1-20条不等)

1条回答

这个正常来说都是in高吧.............

一周热门 更多>