Semplicissimo, se eseguo questa query:
DELETE from db.post as p using archivio.post as a where a.postid = p.postid
Mi da questo errore "#1109 - Unknown table 'post' in MULTI DELETE" (e ovviamente sono certo che la tabella post esiste in entrambi i db)
Se uso quest'altra:
DELETE from db.post as p, archivio.post as a where a.postid = p.postid
Mi dice
Ma dove sta quest'errore di sintassi?Codice PHP:
#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 'where a.postid = p.postid' at line 1
Versione MySQL client: 5.0.21
Grazie per l'aiuto!