how can i view structure of table in sql server? tell me
that query.

Answers were Sorted based on User's Feedback



how can i view structure of table in sql server? tell me that query...

Answer / anil panwar

SP_help < table_name>

Is This Answer Correct ?    54 Yes 1 No

how can i view structure of table in sql server? tell me that query...

Answer / vidit tyagi

sp_help <tablename>

Is This Answer Correct ?    10 Yes 2 No

how can i view structure of table in sql server? tell me that query...

Answer / krishnaraj

sp_help '<TABLE NAME>'

Is This Answer Correct ?    4 Yes 1 No

how can i view structure of table in sql server? tell me that query...

Answer / erwin suryana

sp_columns <table_name>

Is This Answer Correct ?    5 Yes 3 No

how can i view structure of table in sql server? tell me that query...

Answer / ram

sp_help <table name>

Is This Answer Correct ?    2 Yes 1 No

how can i view structure of table in sql server? tell me that query...

Answer / sathish

how can i view structure of table in sql server? tell me
that query.

Select * from information_schema.columns where table_name =
xyz

Is This Answer Correct ?    1 Yes 0 No

how can i view structure of table in sql server? tell me that query...

Answer / r.rajesh

sp_columns table_name

Is This Answer Correct ?    1 Yes 1 No

how can i view structure of table in sql server? tell me that query...

Answer / sagar

Select TableName and then press ALT+F1 means highlight tablename

Is This Answer Correct ?    0 Yes 0 No

how can i view structure of table in sql server? tell me that query...

Answer / murli manohar

sp_tables @table_type = "'TABLEName'"

Is This Answer Correct ?    5 Yes 9 No

how can i view structure of table in sql server? tell me that query...

Answer / justus

sp_helptext <tablename>

Is This Answer Correct ?    2 Yes 7 No

Post New Answer

More SQL Server Interview Questions

to explain sql server 2000 architecture & authentication

1 Answers   HCL,


What is a Linked Server?

1 Answers  


What is difference between views and tables?

0 Answers  


What is collation sensitivity?

0 Answers  


How would you choose between a clustered and a non-clustered index?

0 Answers  






What is normalization process?

0 Answers  


What is openrowset sql server?

0 Answers  


Can we rollback records deleted by a truncate statement?

3 Answers   CarrizalSoft Technologies, United Healthcare,


How can u convert the Date to String?

6 Answers   Microsoft, TCS,


How to create an multi-statement table-valued function?

0 Answers  


What is use of @@ spid in sql server?

0 Answers  


How can u get the number of pupils connecting the database?

1 Answers   Cap Gemini,


Categories