How can I do for inserting a Default Value into a column of a table in Access?
I use this instruction:
ALTER TABLE Tabella ADD Campo Double DEFAULT 0
ALTER TABLE Tabella ADD Campo Double DEFAULT (0)
ALTER TABLE Tabella ADD Campo DEFAULT 0
ALTER TABLE Tabella ADD Campo DEFAULT (0)
ALTER TABLE Tabella ADD Campo SET DEFAULT 0
ALTER TABLE Tabella ADD Campo SET DEFAULT (0)
but all of these cause error. How can I do for doing it?
Best Solution
From MSDN:
Sooo... tell us more about what you're doing and how you're executing your SQL?
And why aren't you using the table designer?