两条实用的 SQL 语句
时间:2011-05-13 来源:walfud
--读取库中的所有表名
Select [name] from sysobjects where xtype = 'u'
--读取指定表的所有列名
Select [name] from syscolumns
where id = (Select MAX(id) from sysobjects where xtype = 'u' and [name] = '表名')
相关阅读 更多 +
时间:2011-05-13 来源:walfud
--读取库中的所有表名
Select [name] from sysobjects where xtype = 'u'
--读取指定表的所有列名
Select [name] from syscolumns
where id = (Select MAX(id) from sysobjects where xtype = 'u' and [name] = '表名')