PostgreSQL - JSON and JSONB
You try to create a table with a JSON column using:
But get a syntax error. What is the problem?
CREATE TABLE users (id INT, profile JSONB DEFAULT {});But get a syntax error. What is the problem?
