怎样获取SqlServer数据库中的表和字段信息

 我来答
blademaster717
2016-12-12 · TA获得超过1456个赞
知道小有建树答主
回答量:882
采纳率:97%
帮助的人:371万
展开全部
--获取所有表:
select * from sys.objects where type = 'U'
--字段信息
select SO.name as t_name, SC.colid as f_id,SC.name as f_name,SC.length as f_length,SC.prec as f_prec,SC.scale as f_scale,ST.name as f_type,SC.isnullable as f_isnull,SC.cdefault from         
             sysobjects   SO, -- 对象表  
             syscolumns   SC, -- 列名表  
             systypes     ST  -- 数据类型表   
             where SO.id = SC.id 
             and SO.xtype = 'U'    -- 类型U表示表,V表示视图  
             and SO.status >= 0    -- status >= 0 为非系统对象  
             and SC.xtype = ST.xusertype
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式