Consp hat Recht, dass es nicht unterstützt wird. Es gibt jedoch eine Problemumgehung:
UPDATE forms SET
pos = (SELECT MIN(pos)-1 FROM (SELECT * FROM forms) AS x)
WHERE id=$id
Eine wahrscheinlich schnellere Version:
UPDATE forms
SET pos = (SELECT pos-1 FROM (SELECT MIN(pos) AS pos FROM forms) AS x)
where id=$id