SQLite JSON_REMOVE()

We can use the SQLite json_remove() function to remove one or more elements from a JSON object or array.

We pass the original JSON as the first argument when we call the function, followed by one or more paths that specify which elements to remove. By “elements”, I mean either array elements or object members (key/value pairs).

Continue reading

SQLite JSON_PATCH()

In SQLite, the json_patch() function can be used to add, modify, or delete elements of a JSON Object.

To do this, it runs the RFC-7396 MergePatch algorithm to apply a given patch against the given JSON input.

We pass the original JSON as the first argument when we call the function, followed by the patch. The function then applies that patch against JSON in the first argument.

Continue reading