SQL databases have a strict schema. They require you to
- Define your schema
- Put in data that follows that schema
- Update the schema as your app changes and perform
migrations
So there are 4 parts when using an SQL database (not connecting it to Node.js, just running it and putting data in it)
- Running the database.
- Using a library that let’s you connect and put data in it.
- Creating a table and defining it’s
schema.
- Run queries on the database to interact with the data (Insert/Update/Delete)