Mysql
 sql >> Database >  >> RDS >> Mysql

Tabella temporanea nelle funzioni memorizzate?

le istruzioni drop table causano un commit implicito, che non è consentito in una funzione mysql. tuttavia, l'eliminazione della tabella temporanea non causa il commit. se non sei preoccupato per le tabelle regolari (non temporanee) denominate month_between_dates o filter_months esistenti dovresti essere in grado di modificare

DROP TABLE IF EXISTS months_between_dates;
DROP TABLE IF EXISTS filter_months;

a

DROP TEMPORARY TABLE IF EXISTS months_between_dates;
DROP TEMPORARY TABLE IF EXISTS filter_months;