首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > SQL Server >

怎么找出字段默认值名称

2012-01-15 
如何找出字段默认值名称?selectnameasdropnamefromsysobjectswherextype Dandparent_obj(selectidfromsy

如何找出字段默认值名称?
select   name   as   dropname   from   sysobjects   where   xtype= 'D '   and   parent_obj=(select   id   from   sysobjects   where   name= 'table_name '   and   xtype= 'U ')   and   id   in   (select   cdefault   from   syscolumns   where   name= 'column_nane ')

我是这样写的,执行结果没问题,大家有没有更好的方法?

[解决办法]
select name as dropname from sysobjects where xtype= 'D ' and id=(select cdefault from syscolumns where name= 'column_nane ' and object_id( 'tablename ')=id)

热点排行