Search This Blog

Showing posts with label SQL Server Queries. Show all posts
Showing posts with label SQL Server Queries. Show all posts

Friday, 22 May 2015

Find Table Column List SQL Server

SELECT *
FROM INFORMATION_SCHEMA.COLUMNS
WHERE TABLE_NAME = 'TABLE_NAME'