質問

Is it possible to alter column to decimal in MS Access 2007+? This is my code: ALTER TABLE [test] ALTER COLUMN [columnName] DECIMAL(18,1)

役に立ちましたか?

解決 2

Its not possible in query of ms access but in OLEDB its possible.

他のヒント

DECIMAL(18,1) is no Access datatype. Either you link it to an MSSQL Server or you use a MS Access datatype.

Here you will find a msdn article on MS Access datatypes (use the types in the second column for your ALTER Query)

ALTER TABLE [test] ALTER COLUMN [columnName] LONG

Best Regards, Bruellhusten

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top