阅读背景:

SQL 查询表字段长度, 名称, 类型, 存储过程创建和修改时间

来源:互联网 

获取存储过程的修改时间和创建时间查询建立时间

--表 

select * from sysobjects where id=object_id(N'表名') and xtype='U'  

--表的结构   

select * from syscolumns where id=object_id(N'表名')     

--存储过程   

select * from sysobjects where id=object_id(N'存储过程名') and xtype='P' 
--表 

select * fro



你的当前访问异常,请进行认证后继续阅读剩余内容。

分享到: