I have a table as follows:
CREATE TABLE partes(
id INTEGER PRIMARY KEY,
id_padre INTEGER,
tipos JSON
);
I insert the sample data:
INSERT INTO partes (id, id_padre, tipos) VALUES (1, 0, '["1","2"]'), (2, 1, '["2"]'), (3, 1, '["2","1"]...
asked by
13.07.2017 / 20:35