随笔分类 -  SQL SERVER

摘要:查询建立时间 --表select * from sysobjects where id=object_id(N'表名') and xtype='U' --表的结构 select * from syscolumns where id=object_id(N'表名') --存储过程 select * f 阅读全文
posted @ 2016-06-08 13:59 ybhnet