Created
December 13, 2022 06:05
-
-
Save jarnaldich/d72a803495951271770968f7add3e54a to your computer and use it in GitHub Desktop.
[ Delete from all tables in SQLITE ] Script to delete all tables from SQLITE #sqlite #sql #metaprogramming
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.output wipe.sql | |
select 'DELETE FROM ' || name || ';' FROM sqlite_master WHERE type='table'; | |
.output | |
.read wipe.sql |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment