Instructions for using JSON operation functions in Mysql5.7

Instructions for using JSON operation functions in Mysql5.7

Preface

JSON is a lightweight data exchange format that uses a language-independent text format, similar to XML, but simpler than XML, easier to read and write. It is easier for machines to parse and generate, and reduces network bandwidth transmission.

The format of JSON is very simple: name/key-value. In previous MySQL versions, to implement such storage, either VARCHAR or TEXT large text was used. After the release of MySQL 5.7, the JSON data type and the retrieval and other function parsing of this type were specially designed.

Let’s put it into practice.

Create a table with a JSON field

For example, an 'article' table has fields including

id, title, tags

An article can have multiple tags, and tags can be set to JSON type

The table creation statement is as follows:

CREATE TABLE article` (
 id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
title` varchar (200) NOT NULL,
 tags` json DEFAULT NULL ,
PRIMARY KEY (`id`)
)ENGINE=InnoDB;

Inserting Data

To insert a data with JSON content, execute the insert statement:

INSERT INTO article` (`title`, `tags`)
VALUES (
'Experience Mysql JSON',
'["Mysql", "Database"]'
);

What is inserted here is a JOSN array ["Mysql", "Database"]

Query all the contents in the article table and you can see the newly inserted data.

Query

Using JSON functions to do two simple queries

1. Find all articles with the tag "MySQL"

SELECT * FROM article`
WHERE JSON_CONTAINS(tags, '["Mysql"]' );

2. Find articles with tags starting with "Data"

SELECT * FROM article`
WHERE JSON_SEARCH(tags, 'one' , 'Data%' ) IS NOT NULL ;

The meaning of the three parameters in the JSON_SEARCH function:

1. Documents to be found

2. There are two options for the search range: 'one' to find the first one that meets the conditions, and 'all' to find all that meet the conditions.

3. Search conditions

JSON Path

JSON Path is used to locate the target field in the document, for example

SELECT JSON_EXTRACT(
'{"id": 1, "name": "mysql"}' ,
'$.name'
);

The result is:mysql

JSON_EXTRACT() is a JSON extraction function. $.name is a JSON path, which means the name field of the located document.

JSON path starts with $. Let's look at some more examples.

{
"num" : 123,
"arr" : [1, 2],
"obj" : {
"a" : 3,
"b" : 4
}
}
$.num //Result: 123
$.arr //Result: [1, 2]
$.arr[1] //Result: 1
$.obj.a //Result: 3
$**.b //Result: 4

Query example using JSON path

SELECT
tags-> "$[0]" as 'tag'
FROM article`;

Update data

For example, if you want to add a "dev" tag to an article, the update condition is that it already contains the "MySQL" tag and there is no data with the "dev" tag yet.

The update statement is as follows:

UPDATE article`
SET tags = JSON_MERGE(tags, '["dev"]' )
WHERE
JSON_SEARCH(tags, 'one' , 'dev' ) IS NULL
AND
JSON_SEARCH(tags, 'one' , 'Mysql' ) IS NOT NULL ;

You can see that the "dev" tag was successfully added

For example, if you want to update the "Mysql" tag to "Mysql 5.7.13", the update statement is as follows:

UPDATE article` set tags = JSON_SET(tags, '$[0] ', 'Mysql 5.7.13' ) ;

We have experienced JSON_MERGE and JSON_SET above. There are many other functions for modifying JSON, such as:

JSON_INSERT(doc, path, val[, path, val]…)

Inserting Data

JSON_REPLACE(doc, path, val[, path, val]…)

Replace data

JSON_ARRAY_APPEND(doc, path, val[, path, val]…)

Append data to the end of an array

JSON_REMOVE(doc, path[, path]…)

Remove data from the specified location

Through the initial operation experience, I feel that the JSON operation of Mysql is relatively smooth. It is really convenient to use the document structure in MySQL in the future.

You may also be interested in:
  • Basic JSON Operation Guide in MySQL 5.7
  • MySQL 5.7 JSON type usage details
  • A brief discussion on MySQL 5.7 JSON format retrieval
  • How to query json in the database in mysql5.6 and below
  • Detailed explanation of JSON series operation functions in Mysql
  • MySQL operations: JSON data type operations
  • MySQL insert json problem
  • Detailed example of MySQL (5.6 and below) parsing JSON
  • Example analysis of the usage of the new json field type in mysql5.7

<<:  Example of automatic import method of vue3.0 common components

>>:  Solution to the error when installing Docker on CentOS version

Recommend

How to change the character set encoding to UTF8 in MySQL 5.5/5.6 under Linux

1. Log in to MySQL and use SHOW VARIABLES LIKE &#...

A detailed introduction to setting up Jenkins on Tencent Cloud Server

Table of contents 1. Connect to Tencent Cloud Ser...

MySQL string splitting operation (string interception containing separators)

String extraction without delimiters Question Req...

Docker practice: Python application containerization

1. Introduction Containers use a sandbox mechanis...

MySQL 5.7 zip archive version installation tutorial

This article shares the installation tutorial of ...

MySql learning day03: connection and query details between data tables

Primary Key: Keyword: primary key Features: canno...

SQL implementation of LeetCode (178. Score ranking)

[LeetCode] 178.Rank Scores Write a SQL query to r...

How to remotely log in to the MySql database?

Introduction: Sometimes, in order to develop a pr...

Example of Vue uploading files using formData format type

In Vue, we generally have front-end and back-end ...

vue element el-transfer adds drag function

The Core Asset Management Project requires el-tra...

JavaScript ES6 Module Detailed Explanation

Table of contents 0. What is Module 1.Module load...

isPrototypeOf Function in JavaScript

Table of contents 1. isPrototypeOf() Example 1, O...

Install MySQL 5.7.18 using rpm package under CentOS 7

I have been using MySQL recently. The article mys...