Jeśli używasz aliasów... „Musisz powiedzieć, co właściwie usunąć (prawdopodobnie dlatego, że aliasy tabel są zwykle potrzebne w składni wielu tabel... możesz po prostu całkowicie pominąć alias):
mysql> delete from tablename r;
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'r' at line 1
mysql> delete r from tablename r;
Query OK, 0 rows affected (0.00 sec)
Zobacz także instrukcję :