Now that I've got the syntax right, MySQL is complaining that a field does not exist, which most certainly does:
mysql> UPDATE -> `userTable` -> INNER JOIN `anotherTable` -> ON `userTable.userid`=`anotherTable.userid` -> SET `userTable.someField`="Jimmy Page" -> WHERE `userTable.someField`="Jim Morrison" -> AND `anotherTable.date` < NOW(); ERROR 1054 (42S22): Unknown column 'userTable.someField' in 'field list' mysql> mysql> SELECT count(someField) FROM userTable; +---------------+ | count(someField) | +---------------+ | 5076 | +---------------+ 1 row in set (0.00 sec) mysql> What could be the issue here? Thanks! -- Dotan Cohen http://gibberish.co.il http://what-is-what.com -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe: http://lists.mysql.com/mysql?unsub=arch...@jab.org