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

2024年11月16日 08:57
有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
这样就可以查询出游橡改两神判个表得相同字段了