This commit is contained in:
2024-04-03 22:04:13 +02:00
parent 7e68609006
commit 0b373d31db
142 changed files with 7334 additions and 0 deletions

12
databases/sqlite.md Normal file
View File

@ -0,0 +1,12 @@
# 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](databases/postgres.md) 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