Vorrei sapere quale è la sintassi per effettuare un TRUNCATE su più tabelle;
il seguente codice mi restituisce un errore di sintassi
codice:
TRUNCATE TABLE `tab1`;
TRUNCATE TABLE `tab2`;
TRUNCATE TABLE `tab3`;

/*o provato anche:*/

TRUNCATE TABLE `tab1`, `tab2`, `tab3` ;
grazie anticipatamente per ogni suggerimento
cichity74