I know of a statement that I can issue to find out the table with the column I am looking for:
SELECT DISTINCT(table_name)
FROM all_tab_cols
WHERE column_name = 'EMP_ID';
However, how should I modify this so that I may find the table that has both say EMP_ID
and EMP_NAME
?