在SQL Server中查询资料库的TABLE数量与名称的sql语句
程序员文章站
2023-12-01 23:53:58
在sql server中 每一个database裡都有一个系统所产生的table sysobjects这一个table中记录了database中所有的table名称 我们可...
在sql server中
每一个database裡都有一个系统所产生的table
sysobjects这一个table中记录了database中所有的table名称
我们可以用下面的sql语法作查询的动作
复制代码 代码如下:
select name,id from sysobjects where xtype = 'u'
其中xtype='u'代表使用的table,若是使用xtype='s'
则代表系统预设的table
在系统table中还有一个名叫syscolumns的table
他记录了栏位的资料
若是想要找出某一个table的栏位相关资料,可以用下面的sql语法..
复制代码 代码如下:
select name from syscolumns where id in (select id from sysobjects where name= '
table_name' and xtype='u')
上一篇: sql使用cast进行数据类型转换示例