Below is a full list of JSON functions and JSON operators available in SQLite.
Continue readingTag: functions
SQLite JSON_TREE()
In SQLite, json_tree()
is a table-valued function that walks the JSON value provided as its first argument and returns a table consisting of one row for each array element or object member.
We provide the JSON value as an argument when we call the function.
Continue readingSQLite JSON_EACH()
In SQLite, json_each()
is a table-valued function that walks the JSON value provided as its first argument and returns a table consisting of one row for each array element or object member.
We provide the JSON value as an argument when we call the function.
Continue readingSQLite JSON_TYPE()
The SQLite json_type()
function returns the type of the outermost element of the given JSON.
We provide the JSON as an argument when we call the function.
We can optionally pass a path, which allows us to get the type of a specific array element or object member within the JSON.
Continue readingSQLite JSON_QUOTE()
In SQLite, the json_quote()
function converts a number or string into its corresponding JSON representation.
We provide the number or string as an argument when we call the function, and the function returns a JSON representation of that value.
Continue readingSQLite 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 readingSQLite 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 readingSQLite JSON_REPLACE()
The SQLite json_replace()
function allows us to replace an existing value in a JSON document with another value.
We pass the original JSON as the first argument when we call the function, followed by the path of the value to replace, followed by the value to replace.
We can also replace multiple key/value pairs if required.
Continue readingSQLite JSON_SET()
The SQLite json_set()
function allows us to insert into, or replace, a value in 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/replace the new value, followed by the value to insert/replace.
We can also insert/replace multiple key/value pairs if required.
Continue readingSQLite JSON_INSERT()
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