in mysql it is possible to do show create table tablename
在mysql中,可以显示create table tablename
what is the sql server equivalent?
什么是与sql服务器等价的?
2 个解决方案
#1
22
In SSMS, right-click on the table node and "Script Table As" / "Create".
在SSMS中,右键单击表节点和“脚本表作为”/“Create”。
There is no built in 'script this table' T-SQL.
在'script this table' T-SQL中没有内置的。
sp_help 'tablename' gives useful table information if that'd do.
sp_help 'tablename'提供了有用的表信息。
#2
4
One that might be close:
其中一个可能很接近:
exec sp_columns YourTableName
#1
22
In SSMS, right-click on the table node and "Script Table As" / "Create".
在SSMS中,右键单击表节点和“脚本表作为”/“Create”。
There is no built in 'script this table' T-SQL.
在'script this table' T-SQL中没有内置的。
sp_help 'tablename' gives useful table information if that'd do.
sp_help 'tablename'提供了有用的表信息。
#2
4
One that might be close:
其中一个可能很接近:
exec sp_columns YourTableName