Answers for "how to view all columns in sql table"

SQL
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 view all columns in sql table"

Code answers related to "SQL"

Browse Popular Code Answers by Language