如何用SQL语句查询两张表中的相同字段数据
展开全部
假设表1位table1 ,表2位table2
select a.col
from (select column_name col from user_tab_columns where table_name = 'table1') a ,
(select column_name col from user_tab_columns where table_name = 'table2') b
where a.col = b.col
这样就可以查询出两个表得相同字段了
select a.col
from (select column_name col from user_tab_columns where table_name = 'table1') a ,
(select column_name col from user_tab_columns where table_name = 'table2') b
where a.col = b.col
这样就可以查询出两个表得相同字段了
2015-03-30
展开全部
您好,希望以下回答能帮助您
Select Name,ID From A group by Name,ID having count (*)>1
如您还有疑问可继续追问。
Select Name,ID From A group by Name,ID having count (*)>1
如您还有疑问可继续追问。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询