Answers for "how to obtain column names of the query result sql"

SQL
2

How to View column names of a table in SQL

DESCRIBE Table_Name;

OR 

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

SQL column name

SELECT table_name, column_name, data_type, data_length
FROM USER_TAB_COLUMNS
WHERE table_name = 'MYTABLE'
Posted by: Guest on November-22-2021

Code answers related to "how to obtain column names of the query result sql"

Code answers related to "SQL"

Browse Popular Code Answers by Language