I am trying to create a table using SQL in access. I want one of the columns to have s default value, how is this done?
CREATE TABLE Bus (BugID INTEGER, Bug_Type CHAR(1) DEFAULT = 'C', Date_Entered DATE DEFAULT = Date());
This doesn't work but I want it to, how can I do this?
Thanks a lot!
Gillian
CREATE TABLE Bus (BugID INTEGER, Bug_Type CHAR(1) DEFAULT = 'C', Date_Entered DATE DEFAULT = Date());
This doesn't work but I want it to, how can I do this?
Thanks a lot!
Gillian