Skip to content

Database.Guide

json

JSON_ARRAY() Function in Oracle

April 28, 2024September 27, 2021 by Ian

In Oracle Database, the JSON_ARRAY() function creates a JSON array from a sequence of SQL scalar expressions or one collection type instance, VARRAY or NESTED TABLE.

Read more

Categories Oracle Tags arrays, functions, json, what is

JSON_TABLE() Function in Oracle

September 26, 2021 by Ian

In Oracle Database, the JSON_TABLE() function creates a relational view of JSON data. It allows you to present the values in a JSON document in table format – as rows and columns.

Read more

Categories Oracle Tags functions, json, what is

JSON_VALUE() Function in Oracle

September 25, 2021 by Ian

In Oracle Database, the JSON_VALUE() function finds a specified scalar JSON value in JSON data and returns it as a SQL value. 

Read more

Categories Oracle Tags functions, json, what is

JSON_QUERY() Function in Oracle

September 24, 2021 by Ian

In Oracle Database, the JSON_QUERY() function selects and returns one or more values from JSON data and returns those values. 

You can use the function to retrieve fragments of a JSON document.

Read more

Categories Oracle Tags functions, json, what is

MariaDB JSON_VALUE() vs JSON_QUERY(): What’s the Difference?

August 13, 2021 by Ian

In MariaDB, the JSON_VALUE() function and JSON_QUERY() function do similar things – they return data from a JSON document.

So what’s the difference?

The main difference is that JSON_VALUE() returns scalar values, whereas JSON_QUERY() returns arrays and objects.

Read more

Categories MariaDB Tags functions, json, what is

MariaDB JSON Functions

July 29, 2021 by Ian

Below is a list of the JSON functions available in MariaDB.

Read more

Categories MariaDB Tags functions, json

MariaDB JSON_VALID() Explained

July 14, 2021 by Ian

In MariaDB, JSON_VALID() is a built-in function that allows you to check whether or not a value is a valid JSON document.

You pass the value as an argument, and JSON_VALID() returns 1 if it’s a valid JSON document, and 0 if not.

Read more

Categories MariaDB Tags functions, json, what is

MariaDB JSON_UNQUOTE() Explained

July 13, 2021 by Ian

In MariaDB, JSON_UNQUOTE() is a built-in function that removes quotes from a JSON value. In other words, it “unquotes” a JSON value.

Read more

Categories MariaDB Tags functions, json, what is

MariaDB JSON_TYPE() Explained

July 13, 2021 by Ian

In MariaDB, JSON_TYPE() is a built-in function that returns the type of a JSON value, as a string. 

Read more

Categories MariaDB Tags functions, json, what is

MariaDB JSON_SEARCH() Explained

July 12, 2021 by Ian

In MariaDB, JSON_SEARCH() is a built-in function that allows you to get the path to a given value in a JSON document.

It accepts the JSON document and a string as arguments, and returns the path to the given string within the document.

Read more

Categories MariaDB Tags functions, json, what is
Older posts
Newer posts
← Previous Page1 … Page9 Page10 Page11 … Page18 Next →

About | Privacy Policy

© 2026 Database.Guide • All rights reserved