Nejste přihlášeni
Stránky 1
Ahoj. Chtěl jsem se zeptat proč mi nejde DELETE .. FROM JOIN ?
Konkrétně
DELETE FROM bx_cron JOIN bx_history
WHERE bx_history.id_cla=bx_cron.id_cla
AND bx_cron.uziv_id=bx_history.user
AND bx_history.udalost=100;
Jakmile použiju JOIN, MySQL hlásí chybu (#1064 - 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 'JOIN bx_history WHERE bx_history.id_cla=bx_cron.id_cla AND bx_cron.uziv_id=' at line 1).
Při tom tohle by mělo běhat už od veze MySQL 5.0
Díky za radu. Jarda
Offline
Tak už to mám... Měl jsem to blbě napsaný...
Správně má bejt:
DELETE bx_cron FROM bx_cron JOIN .......
Offline
Stránky 1