Slide 2
Slide 2 text
Relational vs. non-relational
● Relational DBs store data in tables and rows.
NoSQL DBs store data in various formats - documents,
graphs
● Relational DBs use unified query language - SQL. NoSQL
DBs may have various query languages.
● Relational DBs provide ACID guarantees that is why they are
more reliable. NoSQL DBs usually do not have strict
guarantees (they may provide BASE guarantees)
● It is easier to scale NoSQL DBs and change the schema.
While in relational DBs the schema is fixed.
@dead_flowes22