WelshyWizard
IS-IT--Management
Hi all,
I want to update a datetime field in a sql server table so it holds a different date to what id currently in there.
The code I've tried is the following...
However, This puts '01/01/1900' in the field... How do I modify my code to put the correct data in?
Cheers.
Today is the tomorrow you worried about yesterday - and all is well.....
I want to update a datetime field in a sql server table so it holds a different date to what id currently in there.
The code I've tried is the following...
Code:
UPDATE LABOR_TICKET SET TRANSACTION_DATE = 30/11/2006 WHERE EMPLOYEE_ID = 'GT';
However, This puts '01/01/1900' in the field... How do I modify my code to put the correct data in?
Cheers.
Today is the tomorrow you worried about yesterday - and all is well.....