How to return the column names from a table in SQL Server ?

You can easily return all the column names of a table in SQL Server 2008 using the sp_columns stored procedure.

How to return the column names from a table in SQL Server ?

Use AdventureWorks2014
GO
exec sp_columns ‘Employee’

Leave A Reply

Your email address will not be published. Required fields are marked *

You May Also Like

In this blog post, let’s learn about the error message “1459 – An error occurred while accessing the database mirroring...
In this blog post, let’s learn about the error message “7937 – Columnstore index has one or more missing column...