Hi All,

Is it possible to modify an existing column and set its default property with a default value in MS Access using ALTER table query.

I have tried this:

Code:
ALTER TABLE [table1]
ALTER COLUMN [column1] number SET DEFAULT 0
Code:
ALTER TABLE [table1]
ALTER COLUMN [column1] number DEFAULT 0
Code:
ALTER TABLE [table1]
MODIFY COLUMN [column1] number DEFAULT 0
but nothing is working.


Please help me on this.


Thanks in advance.