sql如何取交集
的有关信息介绍如下:select distinct id from a where id='123' and id in (select distinct id from a where id='456')不过偶实在没看出select distinct id from a where id='123'这种语句有什么用处。。。。 就你写的来说这二者不可能有什么交集。 如果你的意思是指并集,就应该用select distinct id from a where id='456' or id = '123'