LittleSmudge
Programmer
I need to do an Update that involves writing to table tblDateLog based on the values in tblConcess as follows
field names in [braces] are all from tblConcess
Now according to the MySQL manual this should work exactly as typed in v 4.0.4 and onwards
But wouldn't you know it - I'm stuck with version 3.23.58
Other than changing ISP - any ideas on how I can perform the function I need ?
G LS
spsinkNOJUNK@yahoo.co.uk
Remove the NOJUNK to use.
Code:
UPDATE tblDateLog, tblConcess
SET tblDateLog.OpenEarly = [EndDate] + [DefOpenEarly],
tblDateLog.DataDueIn = [EndDate] + [DefDataIn],
tblDateLog.FirstRemind = [EndDate] + [DefFirstRemind],
tblDateLog.SecondRemind = [EndDate] + [DefSecondRemind],
tblDateLog.WarningFlag = [EndDate] + [DefWarningFlag]
WHERE tblConcess.ConcesId = tblDateLog.ConcesRef
AND DataDueIn = 0000-00-00
Now according to the MySQL manual this should work exactly as typed in v 4.0.4 and onwards
But wouldn't you know it - I'm stuck with version 3.23.58
Other than changing ISP - any ideas on how I can perform the function I need ?
G LS
spsinkNOJUNK@yahoo.co.uk
Remove the NOJUNK to use.