DELETE FROM `table` AS `alias` … WHERE `alias`.`column` … why syntax error?

What @Matus and @CeesTimmerman said about MSSQL, works in MySQL 5.1.73 too:

delete <alias> from <table> <alias> where <alias>.<field>...

Leave a Comment