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

How do I open a .db file?

0 Answers  


How do I create a partition table in sql server?

0 Answers  


Explain in brief how sql server enhances scalability of the database system?

0 Answers  


What is clustered primary key?

0 Answers  


Why we use functions in sql server?

0 Answers  


Does a server store data?

0 Answers  


What is the difference between Stored Procedure , Function and Package, 1. how many blocks in Package and what are they.

5 Answers   IBM,


What is the use of set nocount on/off statement?

0 Answers  


Explain transaction isolation levels in sql server?

0 Answers  


you accidentally delete the msdb database what effect does this have on your existing sql databases, and how do you recover? : Sql server administration

0 Answers  


What is temporary stored procedure?

0 Answers  


What is better - 2nd Normal form or 3rd normal form? Why?

2 Answers   TCS, TPK,


Categories