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

What is Covering Indexes? Plz explain with example

3 Answers  


What should be the fill factor for indexes created on tables? : sql server database administration

0 Answers  


Can a synonym name of a table be used instead of a table name in a select statement?

0 Answers  


What does truncate do?

0 Answers  


how do you test proper tcp/ip configuration windows machine? : Sql server database administration

0 Answers  






how to copy only distinct data into another table which is not already exist in database?

2 Answers   Spectra,


What is molap and its advantage? : sql server analysis services, ssas

0 Answers  


What are the properties of primary key?

0 Answers  


If we use where clause in the left outer join then how the query would behave/act?

1 Answers  


Explain index in sql server?

0 Answers  


Insert syudents details in table.Current system date &time insert into joining time.How do insert?( in sysdate only return current system date how do add time?)

0 Answers  


Why is replication required on the sql server?

0 Answers  


Categories