post your sql.... it should looks something like this
Code:
UPDATE cq_eudemon_rbn_rqr SET cq_eudemon_rbn_rqr.max = cq_eudemon_rbn_rqr.max + 3;
UPDATE cq_eudemon_rbn_rqr SET cq_eudemon_rbn_rqr.min = cq_eudemon_rbn_rqr.min + 3;
or this
Code:
UPDATE `my`.`cq_eudemon_rbn_rqr` SET max = max + 3;
UPDATE `my`.`cq_eudemon_rbn_rqr` SET min = min + 3;
the error just says that you wrote your sql wrong and its not proper for the mysql version you are using