Databases
Imposes Tabular style organization:
Everything is a table.
Rows are often referred to as Records.
The data stored in them are well defined.
NoSQL are hard to query, whereas RDBMS use powerful SQL.
SQL follows ACID transactions:
Indexing:
Remember to always write queries as transactions:
BEGIN TRANSACTION;
-- ROLLBACK if condition is not met
- ROLLBACK;
COMMIT;
Effectively, SQL is run sequentially.
Prev: [hashing](hashing.html) Next: [key-value-stores](key-value-stores.html)