我刚刚在 SQL Server Management Studio 中创建了一个表,现在我忘记了为某些字段分配了哪些数据类型。我如何访问这些信息?
问问题
9159 次
4 回答
3
右键单击表格,选择“设计表格”。
于 2012-11-14T21:38:47.590 回答
3
如果在 Sql Server Management Studio 的查询窗口中选择一个表名并按ALT + F1,它将显示该表的详细信息。
在后台快捷键会代表你执行sp_help,所以在这个例子中它执行:sp_help users,这比键入它要快得多。
于 2016-10-26T14:12:47.133 回答
2
sp_help tablename . Gives you information about your table including fields and datatypes
于 2012-11-14T21:21:13.167 回答
1
select * from information_schema.columns where table_name = <yourtable>
于 2012-11-14T20:47:36.130 回答