SON (JavaScript Object Notation) functions in MySQL are used for working with JSON data. These functions allow you to parse and manipulate JSON objects and arrays within SQL queries. Here is a list of common JSON functions, along with real-time examples and detailed explanations for each:

  1. JSON_OBJECT():

    Example:

    sqlCopy code
    SELECT JSON_OBJECT('name', 'John', 'age', 30) AS person_json;
    
    

    Output: The person_json column will contain the JSON object {"name": "John", "age": 30}.

  2. JSON_ARRAY():

    Example:

    sqlCopy code
    SELECT JSON_ARRAY('apple', 'banana', 'cherry') AS fruit_array;
    
    

    Output: The fruit_array column will contain the JSON array ["apple", "banana", "cherry"].

  3. JSON_KEYS():

    Example:

    sqlCopy code
    SELECT JSON_KEYS('{"name": "Alice", "age": 25}') AS keys_array;
    
    

    Output: The keys_array column will contain the JSON array ["name", "age"].

  4. JSON_EXTRACT():

    Example:

    sqlCopy code
    SELECT JSON_EXTRACT('{"info": {"name": "Tom", "age": 35}}', '$.info.name') AS person_name;
    
    

    Output: The person_name column will contain the value "Tom".

  5. JSON_UNQUOTE():

    Example:

    sqlCopy code
    SELECT JSON_UNQUOTE('"quoted_string"') AS unquoted_string;
    
    

    Output: The unquoted_string column will contain the string quoted_string without quotes.

  6. JSON_ARRAY_APPEND():

    Example:

    sqlCopy code
    SELECT JSON_ARRAY_APPEND('[1, 2, 3]', '$', 4) AS updated_array;
    
    

    Output: The updated_array column will contain the JSON array [1, 2, 3, 4].

  7. JSON_ARRAY_INSERT():

    Example:

    sqlCopy code
    SELECT JSON_ARRAY_INSERT('[1, 2, 3]', '$[1]', 4) AS updated_array;
    
    

    Output: The updated_array column will contain the JSON array [1, 4, 2, 3].

  8. JSON_MERGE():

    Example:

    sqlCopy code
    SELECT JSON_MERGE('{"name": "Alice"}', '{"age": 25}') AS merged_json;
    
    

    Output: The merged_json column will contain the JSON object {"name": "Alice", "age": 25}.

These JSON functions in MySQL are valuable for working with JSON data stored in database columns or as part of query results. They enable you to create, manipulate, and extract data from JSON documents within SQL queries.