Mysql
 sql >> Base de données >  >> RDS >> Mysql

Table de dépôt en vrac MySQL où la table aime-t-elle?

Vous pouvez utiliser instructions préparées -

SET @tables = NULL;
SELECT GROUP_CONCAT('`', table_schema, '`.`', table_name,'`') INTO @tables FROM information_schema.tables 
  WHERE table_schema = 'myDatabase' AND table_name LIKE BINARY 'del%';

SET @tables = CONCAT('DROP TABLE ', @tables);
PREPARE stmt1 FROM @tables;
EXECUTE stmt1;
DEALLOCATE PREPARE stmt1;

Il générera et exécutera une instruction comme celle-ci -

DROP TABLE myDatabase.del1, myDatabase.del2, myDatabase.del3;