Answers for "oracle get table column names"

SQL
1

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';
Posted by: Guest on March-03-2021
1

oracle get table column names

SELECT COLUMN_NAME
FROM DBA_TAB_COLS
WHERE table_name = 'my_table';
Posted by: Guest on October-08-2021
4

oracle find all tables with column name

SELECT * FROM USER_TAB_COLUMNS WHERE COLUMN_NAME = 'MY_COLUMN'; -- Connected user
SELECT * FROM ALL_TAB_COLUMNS WHERE COLUMN_NAME = 'MY_COLUMN';	-- Other schemas
SELECT * FROM DBA_TAB_COLUMNS WHERE COLUMN_NAME = 'MY_COLUMN';	-- All tables
Posted by: Guest on May-09-2021
2

column names in oracle sql

DESCRIBE Table_Name;

OR 

DESC Table_Name;
Posted by: Guest on September-25-2020

Code answers related to "oracle get table column names"

Code answers related to "SQL"

Browse Popular Code Answers by Language