--以系統自帶pubs資料庫為例.這個語句可以查出所有預設值的相關資訊.
----htl258(tony) 2009/04/16 02:53
select
(select name from sysobjects where id=c.id) 表名,
(select name from syscolumns where cdefault=a.id) 欄位名,
b.name 預設值名,
a.[text] 預設值
from
syscomments a,
sysobjects b,
syscolumns c
where b.xtype='d'
and a.id=b.id
and b.parent_obj=c.id
and a.colid=c.colid
查出所有字段預設值的相關資訊
以系統自帶pubs資料庫為例.這個語句可以查出所有預設值的相關資訊.htl258 tony 2009 04 16 02 53 select select name from sysobjects where id c.id 表名,select name from syscolumns where c...
access中設定字段預設值相關函式
access中設定字段預設值相關函式 datevalue now datepart q now today date years datepart yyyy today 1981 1 days datepart y today 25 ifdatepart m today 12then ifdatep...
Mysql 修改字段預設值
mysql 5.7.13 問題描述 建表的時候,users info表的role id欄位沒有預設值,後期發現註冊的時候,需要提供給使用者乙個預設角色,也就是給role id欄位乙個預設值。當前users info表的role id 在建立表的時候,沒有設定預設值,資料庫自動設定為空。原先建表語句 ...