发布网友 发布时间:2022-04-24 09:51
共1个回答
热心网友 时间:2022-06-18 17:23
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
这个是查询两个表是否有相同字段的,另外还要看这些字段的意义是不是一样