如何用SQL语句查询两张表中的相同字段数据

2024-11-16 08:57:26
推荐回答(1个)
回答1:

假设表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
这样就可以查询出游橡改两神判个表得相同字段了