sql >> Base de Datos >  >> RDS >> Mysql

MySQL ::Ejecutar instrucción SQL dentro de Variable

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