Blog that contains articles about new technologies related or not with programming.
I will describe and solves some problems that I encounter in my career.
ASP .NET, AJAX, Javascript, C++, C# and SQL are some of the subjects that will appear.
28 July 2011
get the list of columns that r available in a particular table in
sqlserver
select column_name from information_schema.columns where table_name='tblEmp'
or
select name from sys.columns where object_id=object_id('tblEmp')
No comments:
Post a Comment