Answers for "return names of columns in table sql"

SQL
9

return names of columns in table sql

SELECT *
FROM INFORMATION_SCHEMA.COLUMNS
WHERE TABLE_NAME = N'Customers'
Posted by: Guest on December-11-2020
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 "return names of columns in table sql"

Code answers related to "SQL"

Browse Popular Code Answers by Language