文字 nvarchar(n)
備註 ntext
數字(長整型) int
數字(整型) smallint
數字(單精度) real
數字(雙精度) float
數字(位元組) tinyint
貨幣 money
日期 smalldatetime
布林 bit
附:轉換成sql的指令碼。
alter table tb alter column aa byte 數字[位元組]
alter table tb alter column aa long 數字[長整型]
alter table tb alter column aa short 數字[整型]
alter table tb alter column aa single 數字[單精度
alter table tb alter column aa double 數字[雙精度]
alter table tb alter column aa currency 貨幣
alter table tb alter column aa char 文字
alter table tb alter column aa text(n) 文字,其中n表示字段大小
alter table tb alter column aa binary 二進位制
alter table tb alter column aa counter 自動編號
alter table tb alter column aa memo 備註
alter table tb alter column aa time 日期/時間
access中的字段型別
sql語句修改access中的字段型別 alter table tb alter column aa byte 數字 位元組 alter table tb alter column aa long 數字 長整型 alter table tb alter column aa short 數字 整型 a...
SQL取字段型別
存於每乙個資料庫的syscolumns表裡面的name就是列名,xtype就是資料型別,但是這個xtype是數字的,下面是數字和資料型別對應的關係 xtype 34 image xtype 35 text xtype 36 uniqueidentifier xtype 48 tinyint xtyp...
SQL欄位常用型別
一般的常用字段有下面幾種 varchar char text int allint tinyint numeric money allmoney bitdatetime 不同的字段型別用來存放不同型別的資料。建立和使用表時,更你應該理解五種常用的字段型別 字元型,文字型,數值型,邏輯性和日期型。字元...