I need to do a mass update of users based on some field in different tables
I have written some SQL but it would not work under mysql (in the office DB2 and oracle are ok with this kind of sql)
This is what I am trying to run :
Code:
UPDATE user,userfield
SET user.usergroupid=8
WHERE
userfield.userid=user.userid AND
userfield.field8= 'United Kingdom' AND
user.usergroupid='5'
Can anyone please help....
Thanks
LeMarsu