首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > Access >

,小弟我想找出多个数据表中的相同数据,SQL语句如何写

2012-04-23 
请教高手,我想找出多个数据表中的相同数据,SQL语句怎么写?就是多个数据表里,有相同的数据,要全部查找出来,

请教高手,我想找出多个数据表中的相同数据,SQL语句怎么写?
就是多个数据表里,有相同的数据,要全部查找出来,SQL语句怎么写?先谢了!


[解决办法]
where A.col1=B.col1 and A.col2=B.col2 and A.col3=B.col3 and ...
[解决办法]
select col1,col2,col3
from (
select * from tab1
union all
select * from tab2
union all
select * from tab3
) t
group by col1,col2,col3
having count(*)>1

热点排行