Answers for "column names in sql table"

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
3

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

Code answers related to "column names in sql table"

Code answers related to "SQL"

Browse Popular Code Answers by Language