2012-11-14 85 views

回答

1
select * from information_schema.columns where table_name = <yourtable> 
1
sp_help tablename . Gives you information about your table including fields and datatypes 
3

右键单击该表中,选择 '设计表'。

+0

这应该是公认的答案 – Callat

3

如果您在Sql Server Management Studio 的查询窗口中选择一个表名,然后按ALT + F1它将显示该表的详细信息。

在后台快捷键中将代表您执行sp_help,因此在本例中它会执行:sp_help用户,这比键入它快得多。

enter image description here

Source Here

+0

完美。爱它。对我来说,完美的解决方案不需要在对象浏览器中搜索表格 – Gondil

相关问题