Hi,
Is there a sql command to drop all the tables in a database, or just delete the whole database altogether? Right now I'm using:
DROP TABLE my_table_name
which works ok, but it would be easier to drop all of them in one step instead of iterating over every single one. If I just have to drop the whole database, that's fine too, I can just re-create it.
Thanks
Start Free Trial