SQLite Cheat-SheetΒΆ
SQLite is a relational database contained in a C library. In contrast to many other databases, SQLite is not a client-server database engine. Rather, it's embedded into an end program.
SQLite generally follows the PostgreSQL syntax but does not enforce type checking.
You can open a SQLite Database with sqlite3 <filename> directly.
CommandsΒΆ
.help Shows all commands .databases Show all existing databases .quit Exists .tables Shows all tables .backup Backups current database