The company has Windows 98 computers and an inventory database using MS Jet 3.5. Using SQL, I need to add a date field called [Date First Received] and have a date like 6/29/02 entered when the record is created. I am a SQL novice and when I tried ALTER TABLE [Product1] ADD COLUMN [Date First Received] DATETIME I got the new field/column. How can I add this column and have a default computer clock date, but not the time, entered? I tried ALTER TABLE [Product1] ADD COLUMN [Date First Received] DATETIME DEFAULT(DATE) also ALTER TABLE [Product1] ADD COLUMN [Date First Received] DATETIME = DATE() and these did not work.