Answers for "sql get table column types"

SQL
1

get table column names sql ssms

SELECT COLUMN_NAME
FROM INFORMATION_SCHEMA.COLUMNS
WHERE TABLE_NAME = 'Your Table Name'
ORDER BY COLUMN_NAME

-- IS_NULLABLE returns yes or no depending on null or not null
Posted by: Guest on January-15-2021
0

view column data type sql

SELECT COLUMN_NAME, DATA_TYPE 
FROM INFORMATION_SCHEMA.COLUMNS 
WHERE TABLE_NAME = 'yourTableName'
Posted by: Guest on September-16-2021
0

view column type sql server

sp_help TableName
Posted by: Guest on October-13-2021

Code answers related to "sql get table column types"

Code answers related to "SQL"

Browse Popular Code Answers by Language