access中的字段型別

2021-06-09 22:00:04 字數 734 閱讀 6523

sql語句修改access中的字段型別

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允許九種資料型別:文字、備註、數值、日期/時間、貨幣、自動編號、是/否、ole物件、超級鏈結、查詢嚮導。

Access中的資料型別和字段屬性

資料型別 用途 文字字元 數字或字元與數字的任意組合,不能用於計算。最長255個字元,預設長度為50個字元。對於指定的大小,存放中文漢字與英文本母的個數都是一樣的 備註超長的文字,用於注釋或說明,最長65535個字元 數字用於計算的值,1 2 4或8位元組 日期 時間 表示日期和時間,可用於計算,最...

ACCESS 中欄位說明的提取

測試 add by on 2009 7 22 for cstring stablename fine mzbase cstring sfieldname drill id safearray far psa null safearraybound rgsabound variant t var va...

Access與SQL欄位型別對應關係

文字 nvarchar n 備註 ntext 數字 長整型 int 數字 整型 smallint 數字 單精度 real 數字 雙精度 float 數字 位元組 tinyint 貨幣 money 日期 smalldatetime 布林 bit 附 轉換成sql的指令碼。alter table tb ...