Answers for "sql query to get all columns by tablename"

SQL
1

TSQL GET ALL COLUMNS IN TABLE

/*Get all columns from a table (sql server)*/
SELECT *
FROM INFORMATION_SCHEMA.COLUMNS
WHERE TABLE_NAME = 'table name';
Posted by: Guest on June-21-2021
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 "sql query to get all columns by tablename"

Code answers related to "SQL"

Browse Popular Code Answers by Language