–表的字段名称
select name from syscolumns where id=object_id( '表 ')
–表的字段数
select count(name) from syscolumns where id=object_id( '表 ')
建议改成:object_id(N '表 ') 这样只是规范一些,一般不会出错.
select name from syscolumns where id=object_id(N '表 ')–列名
select name from sysobjects where xtype= 'U '–表
select name from sysobjects where xtype= 'P '–存储过程
0 条评论
沙发空缺中,还不快抢~