Answers for "how to find all column names in sql"

SQL
12

sql server search column name in all tables

SELECT      COLUMN_NAME AS 'ColumnName'
            ,TABLE_NAME AS  'TableName'
FROM        INFORMATION_SCHEMA.COLUMNS
WHERE       COLUMN_NAME LIKE '%MyName%'
ORDER BY    TableName
            ,ColumnName;
Posted by: Guest on March-07-2020
0

read all columns of a table sql

/* To retreive the column names of table using COLUMN_NAME */
SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = N'table_name_here'
Posted by: Guest on September-26-2021

Code answers related to "how to find all column names in sql"

Code answers related to "SQL"

Browse Popular Code Answers by Language