Answers for "sql select field from column name"

SQL
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
0

sql query to return field name of a table

select COLUMN_NAME from INFORMATION_SCHEMA.COLUMNS 
where TABLE_NAME = 'tablename'
Posted by: Guest on July-28-2021

Code answers related to "sql select field from column name"

Code answers related to "SQL"

Browse Popular Code Answers by Language