多次select查询结果的交集,请问SQL语句如何写
表A有2个字段id,aidmysql>selectidfromawhereaid=5;+----+|id|+----+|1||2||4|+----+3rowsinset(...
表A有2个字段id,aidmysql> select id from a where aid=5;+----+| id |+----+| 1 || 2 || 4 |+----+3 rows in set (0.00 sec)mysql> select id from a where aid=6;+----+| id |+----+| 1 || 4 |+----+2 rows in set (0.00 sec)我想取这2条查询结果的交集,请问SQL语句如何写。也就是结果id:1,4mysql> select id from a where aid=5;+----+| id |+----+| 1 || 2 || 4 |+----+3 rows in set (0.00 sec)mysql> select id from a where aid=6;+----+| id |+----+| 1 || 4 |+----+2 rows in set (0.00 sec)
展开
2个回答
2013-08-30
展开全部
mysql这垃圾不支持交集的。如果是数据库那么SQL如下SELECT id FROM a WHERE aid=5 INTERSECTSELECT id FROM a WHERE aid=6
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2013-08-30
展开全部
条件and?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询