Supprimer plusieurs table dans PgAdmin
The snippet can be accessed without any authentication.
Authored by
Gregory.Ooghe
Edited
SELECT CONCAT('DROP TABLE ',table_name,';')
FROM information_schema.tables
WHERE table_name LIKE 'output_%'
/*
Va fournir une liste de commande pour effacer les tables commençant par output_.
On peut ainsi vérifier la liste.
Une fois vérifier on la copie/colle dans la fenêtre de Query.
*/
Please register or sign in to comment