- I like it as a default database when I don’t know what database I want to use
- I like schemas and I hate schemaless databases
- it’s useful to be able to enforce your schema before the data
gets written to disk
- rather than in your ORM!
- CHECK constraints: ensure balance >= 0
- this is why people don’t like schemas