Skip to content
Advertisement

How do I list all tables in a schema having specific column in oracle sql?

I have found the list of all tables using this query –

But I need to list all the tables having column name starttime_date or starttime.

Advertisement

Answer

You could use USER_TAB_COLS view.

For example,

You could try,

User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement