I want to describe a table in SQL Server 2008 like what we can do with the DESC command in Oracle.
DESC
I have table [EX].[dbo].[EMP_MAST] which
[EX].[dbo].[EMP_MAST]
May be this can help:
Use MyTest Go select * from information_schema.COLUMNS where TABLE_NAME='employee'
{ where: MyTest= DatabaseName Employee= TableName } --Optional conditions