Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SQL

oracle find all tables with column name

-- Oracle-specific
-- all_tab_columns is a magic table listing all columns from all tables
select table_name from all_tab_columns where column_name = 'PICK_COLUMN';
Source by www.thepolyglotdeveloper.com #
 
PREVIOUS NEXT
Tagged: #oracle #find #tables #column
ADD COMMENT
Topic
Name
2+6 =