Answers for "print column name of tables oracle"

SQL
2

oracle get table column names

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

oracle show column of table

SELECT column_name
  FROM all_tab_cols
 WHERE table_name = 'USERS'
   AND owner = '" +_db+ "'
   AND column_name NOT IN ( 'PASSWORD', 'VERSION', 'ID' )
Posted by: Guest on February-15-2021

Code answers related to "print column name of tables oracle"

Code answers related to "SQL"

Browse Popular Code Answers by Language