Dear all, I have successfully done following queries in DB Browser for SQLite:
INSERT INTO tblUser (name, phone) values("oz", json('{"cell":"+491765", "home":"+498973"}'));
SELECT json_set(tblUser.phone, '$.cell', '123') FROM tblUser;
SELECT tblUser.name From tblUser WHERE...