博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
查询字段的默认值
阅读量:5831 次
发布时间:2019-06-18

本文共 1958 字,大约阅读时间需要 6 分钟。

--使用在SQL2008,***查询字段说明和默认值select   object_name(c.id) as 表名   ,c.name as 字段名   ,t.name as 数据类型   ,c.prec as 长度   ,p.value as 字段说明   ,m.text as 默认值  from syscolumns c   inner join   systypes t   on c.xusertype=t.xusertype   left join  sys.extended_properties p   on c.id=p.major_id and c.colid = p.minor_id   left join   syscomments m   on c.cdefault=m.id-------------------------------------------------------------------------------------------select * from sys.extended_properties  --SQL2008 扩展属性表(字段注释,)----------------------------------------------------------------------------------------------------/*在sql2000中使用*/--获取所有默认值:select   object_name(c.id) as 表名   ,c.name as 字段名   ,t.name as 数据类型   ,c.prec as 长度   ,p.value as 字段说明   ,m.text as 默认值  from syscolumns c   inner join   systypes t   on c.xusertype=t.xusertype   left join    sysproperties p   on c.id=p.id and c.colid = p.smallid   left join   syscomments m   on c.cdefault=m.id--获取单个字段默认值:select   object_name(c.id) as 表名   ,c.name as 字段名   ,t.name as 数据类型   ,c.prec as 长度   ,p.value as 字段说明   ,m.text as 默认值  from syscolumns c   inner join   systypes t   on c.xusertype=t.xusertype   left join    sysproperties p   on c.id=p.id and c.colid = p.smallid   left join   syscomments m   on c.cdefault=m.id  where objectproperty(c.id,'IsUserTable')=1   and object_name(c.id) = '表名' and c.name = '字段名称'  -----------------------------------------------------------------------------------------------------查询指定表的指定字段的默认值select   object_name(c.id) as 表名   ,c.name as 字段名   ,t.name as 数据类型   ,c.prec as 长度   ,p.value as 字段说明   ,m.text as 默认值  from syscolumns c   inner join   systypes t   on c.xusertype=t.xusertype   left join  sys.extended_properties p   on c.id=p.major_id and c.colid = p.minor_id    left join   syscomments m   on c.cdefault=m.id  where objectproperty(c.id,'IsUserTable')=1   and object_name(c.id) = '表名' and c.name = '字段名'

  

转载于:https://www.cnblogs.com/accumulater/p/7116224.html

你可能感兴趣的文章
记录一次蚂蚁金服前端电话面试
查看>>
直播源码开发视频直播平台,不得不了解的流程
查看>>
Ubuntu上的pycrypto给出了编译器错误
查看>>
聊聊flink的RestClientConfiguration
查看>>
在CentOS上搭建git仓库服务器以及mac端进行克隆和提交到远程git仓库
查看>>
測試文章
查看>>
Flex很难?一文就足够了
查看>>
【BATJ面试必会】JAVA面试到底需要掌握什么?【上】
查看>>
CollabNet_Subversion小结
查看>>
mysql定时备份自动上传
查看>>
Linux 高可用集群解决方案
查看>>
17岁时少年决定把海洋洗干净,现在21岁的他做到了
查看>>
linux 启动oracle
查看>>
《写给大忙人看的java se 8》笔记
查看>>
倒计时:计算时间差
查看>>
Linux/windows P2V VMWare ESXi
查看>>
Windows XP倒计时到底意味着什么?
查看>>
tomcat一步步实现反向代理、负载均衡、内存复制
查看>>
运维工程师在干什么学些什么?【致菜鸟】
查看>>
Linux中iptables详解
查看>>