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 0Code:ALTER TABLE [table1] ALTER COLUMN [column1] number DEFAULT 0but nothing is working.Code:ALTER TABLE [table1] MODIFY COLUMN [column1] number DEFAULT 0
Please help me on this.
Thanks in advance.
Bookmarks