Answers for "sql select the column names of a table"

SQL
2

select table column name in sql

/**
You must have all privillage to access this, else it will denaid access :)
**/

SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = N'tableName';
Posted by: Guest on November-14-2021
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

Code answers related to "sql select the column names of a table"

Code answers related to "SQL"

Browse Popular Code Answers by Language