The Structured Query Langauge (SQL, pronounced either as "S-Q-L" or "sequel") has been around for a very long time. It's a declarative langauge (like HTML, as opposed to procedural languages like JavaScript)
that defines queries to request or update data in an RDBMS. SQL is powerful and flexible, and every RDBMS has its own extensions to the language. Fortunately, the core standard hasn't changed in forever, is
well-supported by every RDBMS, and is sufficient for typical app usage.
That typical usage is often referred to as Create-Read-Update-Delete (CRUD). For most apps, that's 90% of what they need to do: create a record in a table, read records from tables, update a record in a table,
or delete a record from a table. Follow the video below to manually run some SQL commands in DB Browser for SQLite.
Copy/paste all your SQL queries in a file queries.txt and commit it to your repo.