1.--读取库中的所有表名

select name from sysobjects where xtype='u'
 --读取指定表的所有列名
select name from syscolumns where id=(select max(id) from sysobjects where xtype='u' and name='表名')
2.
posted on 2017-12-13 15:46  闪光狂风  阅读(430)  评论(0编辑  收藏  举报