The SQLite json_insert()
function allows us to insert a new value into a JSON document.
We pass the original JSON as the first argument when we call the function, followed by a path that specifies where to insert the new value, followed by the value to insert.
We can also insert multiple key/value pairs if required.
Continue reading