sqlserver查看临时表表结构?
我的回答是:一般来说,关注表结构的语句都是desc表名。
在SQL数据库中,怎么查询一个表中有哪些字段?
1.在Oracle中,可以解决SELECTCOLUMN_NAME,Table_NAMEfromuser_tab_columnswhereCOLUMN_NAMEtest_NAME2的问题,在SqlServer中,可以解决selectcolumn_name,Table_NAMEfrominformation_whereCOLUMN_NAM
sqlserver中查询所有表的创建和修改时间?
此存储过程列出了:数据库中所有表的创建时间。
创建过程usp_alldatabases
如同
开始
将@script声明为nvarchar(2000)
如果存在(从sysobjectswherenametab_alltables中选择1)删除表tab_alltables
创建表tab_alltables(dbnvarchar(1000),tabnvarchar(1000),cdatedatetime)
为声明c光标
selectinsertintotab_alltables(tab,db,cdate)selectname,name,Crdatefromnamewherextypeufromwheredbidgt4
打开c
将c提取到@script中
while@@fetch_status0
开始
exec(@script)
打印@脚本
将c提取到@script中
结束
关闭c释放c
select*fromtab_alltabl:数据库名称
2)选项卡:表名称
3)cdate:创建表格时间
转动