如何用SQL语句将表中两个字段相同的记录取出
2个回答
展开全部
假设表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
这样就可以查询出两个表得相同字段了
,表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
这样就可以查询出两个表得相同字段了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询