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

mysql (5.1)> crear una tabla con el nombre de una variable

Debería poder hacer algo como esto:

SET @yyyy_mm=DATE_FORMAT(now(),'%Y-%m');
SET @c = CONCAT('CREATE TABLE `survey`.`',@yyyy_mm, '` LIKE `survey`.`interim`');
PREPARE stmt from @c;
EXECUTE stmt;
DEALLOCATE PREPARE stmt;