Hi,
Can anyone help with this UPDATE statement please...?
Code:
UPDATE Stats
SET JobShownInResults = JobShownInResults + 1
WHERE Jobs.JobID IN
(
[Query that returns list of IDs]
)
From Stats
inner join Jobs
ON Jobs.JobId = Stats.ID
Can anyone help me?
No matter what I do with the join I get an 'incorrect syntax' error.
cheers,
Pete