antivirus22
Programmer
I'm trying to update a table called Processed in my database to set exportdate to 1/1/1901 where the
exportdate = 1/1/1900 and also date < 20021124.
I returned all rows in the table and then did a SQL statement from there.
I coded it :
UPDATE Processed
SET exportdate = '01/01/1901'
WHERE (exportdate='01/01/1900') AND ([date] <20021124)
exportdate = 1/1/1900 and also date < 20021124.
I returned all rows in the table and then did a SQL statement from there.
I coded it :
UPDATE Processed
SET exportdate = '01/01/1901'
WHERE (exportdate='01/01/1900') AND ([date] <20021124)