No, SQL
Postgres easily handles your NoSQL databases party tricks.
Rich JSON Documents
- The most natural and productive way to work with data.
- Supports arrays and nested objects as values.
- Allows for flexible and dynamic schemas.
CREATE TABLE simple_example (id BIGSERIAL PRIMARY KEY, body jsonb); INSERT INTO simple_example (body) VALUES ('', '["a", "b", 131, null, ]')