I'm trying to use JSONB data type in PostgreSQL for my product table, like the following example:
Then, when I execute the below INSERT query for this table, the query is not executed !
INSERT INTO PRODUCT
VALUES
(7, 'iPhone8', 'Grey', 700.00, 34, '{"storage": 256, "RAM": 16, "resolution": 1700X456 }')
