MySQL insert json problem

MySQL insert json problem

MySQL 5.7.8 and later began to support a native JSON type that can efficiently obtain data in JSON text. This type has the following advantages:

  • Automatic verification during storage, error reporting if verification fails
  • Better storage structure. An internal structure is used to store JSON text elements that can be read quickly. The new server reads a JSON text in binary format, rather than reading it as a string and then converting it. This binary format allows the server to retrieve sub-objects (nested arrays) by key or array index in text without having to read the entire value.

In addition, the system has some restrictions on the JSON format:

  • The maximum length of the JSON text depends on the system constant: max_allowed_packet. This value is limited only when the server is storing data. It is allowed to exceed this value when calculating in memory.
  • JSON columns cannot have default values
  • Like other binary columns, JSON columns cannot be indexed. However, you can create indexes on certain table column values ​​from the text stored in the JSON column. The MySQL optimal controller also queries the index created using the JSON representation.

Problems encountered when inserting json data

You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '{

Insert code

insert into `players` (`id`,`player_and_games`) values(1,{
  "id":1,
  "name":"aaa",
  "games_played":{
    "Battlefieldld":{
      "weapon":"adsf",
      "level":20
    },
    "Crazy":{
      "weapon":"adsf",
      "level":20
    }
  }
})

There is a problem, json does not use quotes, the correct way is as follows

insert into `players` (`id`,`player_and_games`) values(1,'{
  "id":1,
  "name":"aaa",
  "games_played":{
    "Battlefieldld":{
      "weapon":"adsf",
      "level":20
    },
    "Crazy":{
      "weapon":"adsf",
      "level":20
    }
  }
}')

Summarize

The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. Thank you for your support of 123WORDPRESS.COM. If you want to learn more about this, please check out the following links

You may also be interested in:
  • Basic JSON Operation Guide in MySQL 5.7
  • MySQL 5.7 JSON type usage details
  • Instructions for using JSON operation functions in Mysql5.7
  • 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
  • Detailed example of MySQL (5.6 and below) parsing JSON
  • Example analysis of the usage of the new json field type in mysql5.7

<<:  The principle and application of ES6 deconstruction assignment

>>:  Detailed explanation of the use of umask under Linux

Recommend

Vue3+TypeScript implements a complete example of a recursive menu component

Table of contents Preface need accomplish First R...

Summary of MySQL 8.0 memory-related parameters

Theoretically, the memory used by MySQL = global ...

MySQL 8.0.13 manual installation tutorial

This article shares the manual installation tutor...

Web Design Help: Web Font Size Data Reference

<br />The content is reproduced from the Int...

Docker container connection implementation steps analysis

Generally speaking, after the container is starte...

An enhanced screenshot and sharing tool for Linux: ScreenCloud

ScreenCloud is a great little app you didn’t even...

How to build a virtual machine with vagrant+virtualBox

1. Introduction Vagrant is a tool for building an...

How to build svn server in linux

1: Install SVN yum install -y subversion 2. Creat...

Use iptables and firewalld tools to manage Linux firewall connection rules

Firewall A firewall is a set of rules. When a pac...

Vue uses vue meta info to set the title and meta information of each page

title: vue uses vue-meta-info to set the title an...

Introduction to CSS BEM Naming Standard (Recommended)

1 What is BEM Naming Standard Bem is the abbrevia...

Detailed explanation of the steps to create a web server with node.js

Preface It is very simple to create a server in n...

How to fill items in columns in CSS Grid Layout

Suppose we have n items and we have to sort these...

How to quickly deploy an Elasticsearch cluster using docker

This article will use Docker containers (orchestr...