So I'm trying to make a query that adds a column to my table named "Table1". That column's name id "Date". (I'm not sure the syntax to add a DATE/TIME datatype)
After that I'd like to also like to change the format to "yymmdd",
, and change the date (or make it default) to what ever the date is.
Is there any way I can do this in access or is it impossible?
Code:
ALTER TABLE Table1 ADD COLUMN Date DATE;
Code:
Format(Date, "yymmdd")
Code:
NOW()
Comment