find all tables where column name exists oracle

Solutions on MaxInterview for find all tables where column name exists oracle by the best coders in the world

showing results for - "find all tables where column name exists oracle"
Lukas
16 Apr 2019
1select table_name from all_tab_columns where column_name like '%STLDOC%';
similar questions