SQL Server 中自定義資料型別

magicgao8888發表於2009-06-01
 自定義資料型別
SQL Server 中自定義資料型別建立在SQL server系統資料型別基礎上的,需要指定該型別的名稱,建立在其上的系統資料型別及是否充許為空。
SQL Server 中自定義資料型別方法:利用系統儲存過程:sp_addtype
SQL Server 中自定義資料型別語法:sp_addtype type,
[ system_data_type ]   [ ,'nulltype' ]
SQL Server 中自定義資料型別注:
SQL Server 中自定義資料型別
1 .type是使用者定義資料型別的名稱。資料型別名稱必須遵循識別符號規則,並且在每個資料庫中必須是唯一的。
SQL Server 中自定義資料型別
2 .system_data_type是SQL server提供的資料型別,使用者定義的資料型別即基於該型別。
SQL Server 中自定義資料型別
3 . ' nulltype ' :指定必須如何處理null值。設定null預設, not  null或nonull
SQL Server 中自定義資料型別例1:自定義資料型別taihang
SQL Server 中自定義資料型別
exec  sp_addtype taihang,smallint, ' not null '
SQL Server 中自定義資料型別例2:刪除自定義資料型別taihang
SQL Server 中自定義資料型別
exec  sp_droptype taihang

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/14321372/viewspace-604852/,如需轉載,請註明出處,否則將追究法律責任。

相關文章