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

日期:2016-07-11 15:07:50 人气:1

如何用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 这样就可以查询出两个表得相同字段
    A+
热门评论