Created on 08-26-2016 05:26 AM - edited 09-16-2022 03:36 AM
Drop 100s tables from bash one by one, can be too slowBut Drop statement only admit ONE tableany idea/solution?
BR
Created 08-26-2016 07:06 AM
If you want to delete a whole database you can:
drop database <dbname> cascade;
That will drop the database and all its tables.
View solution in original post