What is wrong here
phpMyAdmin
update posts set pos = 'right' where pos = 'below' limit 4 offset 10;
I also tried:
update posts set pos = 'right' where pos = 'below' offset 10 limit 4;
update posts set pos = 'right' limit 4 offset 10;
update posts set pos = 'right' offset 10 limit 4;
Always the same error:
#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'offset 10' at line 1