Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我运行此语句时;
SELECT TABLE_NAME FROM ALL_TAB_COLUMNS WHERE COLUMN_NAME = 'DUMPDATE'
它返回包含列名“dumpdate”的表名;
TABLE1 TABLE2 etc
我想要的是:
SELECT DUMPDATE FROM TABLE1
等等等等。 有没有办法在一个 SQL 查询中做到这一点?