문제

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