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

Tronca tutte le tabelle nel database MySQL che corrispondono a un modello di nome

Usa concat:

SELECT concat('TRUNCATE TABLE `', TABLE_NAME, '`;')
FROM INFORMATION_SCHEMA.TABLES
WHERE TABLE_NAME LIKE 'inventory%'

Questo ovviamente genererà solo SQL che devi copiare ed eseguire tu stesso.