Answers for "sql get column name from table"

SQL
3

get column name sql server

SELECT *
FROM INFORMATION_SCHEMA.COLUMNS
WHERE TABLE_NAME = N'Customers'
Posted by: Guest on December-11-2020
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

Code answers related to "sql get column name from table"

Code answers related to "SQL"

Browse Popular Code Answers by Language