Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SQL

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
Source by www.aspsnippets.com #
 
PREVIOUS NEXT
Tagged: #table #column #names #sql #ssms
ADD COMMENT
Topic
Name
8+1 =