Mysql
 sql >> Datenbank >  >> RDS >> Mysql

MySQL ::Führen Sie eine SQL-Anweisung innerhalb einer Variablen aus

PREPARE clear_temp FROM "DELETE FROM w_projection_temp WHERE user_id = ?"
EXECUTE clear_temp USING uid;
DEALLOCATE PREPARE clear_temp;