Answers for "get all columns from table sql"

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
-1

get all columns from table sql

/* To retreive the column names of table using sql */

SELECT COLUMN_NAME.
FROM INFORMATION_SCHEMA. COLUMNS.
WHERE TABLE_NAME = 'Your Table Name'
Posted by: Guest on May-24-2020
1

get all columns from table sql

SELECT
  	TABLE_NAME
FROM
  	INFORMATION_SCHEMA.TABLES
Posted by: Guest on August-20-2020

Code answers related to "get all columns from table sql"

Code answers related to "SQL"

Browse Popular Code Answers by Language