I am trying to create a simple update sql to update a record in an SQL database
What is the proper date format. I have tried everyone I can think of all are invalid.
I have tried
UPDATE TABLE SET DATE = #1/1/1999#
UPDATE TABLE SET DATE = '#1/1/1999#'
UPDATE TABLE SET DATE = 1/1/1999
UPDATE TABLE SET DATE = '1/1/1999'
I get messages llike error at # ,can't convert int to date, can't convert string to date.
How exaclty do I phrase this.
Thanks
What is the proper date format. I have tried everyone I can think of all are invalid.
I have tried
UPDATE TABLE SET DATE = #1/1/1999#
UPDATE TABLE SET DATE = '#1/1/1999#'
UPDATE TABLE SET DATE = 1/1/1999
UPDATE TABLE SET DATE = '1/1/1999'
I get messages llike error at # ,can't convert int to date, can't convert string to date.
How exaclty do I phrase this.
Thanks