如何用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
这样就可以查询出两个表得相同字段了
温馨提示:内容为网友见解,仅供参考
无其他回答
相似回答