Solution to mysql error code 1064

Solution to mysql error code 1064

If the words in the sql statement conflict with the keywords of mysql, just use `` (above the tab key) to enclose the words.

The original sql statement

<insert id="insert" parameterType="com.zhangman.manman.entity.User" >
 insert into user (id, username, password, name, desc, email, birthday, phone, status, createtime, roleId)
 values ​​(#{id,jdbcType=INTEGER}, #{username,jdbcType=VARCHAR}, #{password,jdbcType=VARCHAR}, 
  #{name,jdbcType=VARCHAR}, #{desc,jdbcType=VARCHAR}, #{email,jdbcType=VARCHAR}, 
  #{birthday,jdbcType=VARCHAR}, #{phone,jdbcType=VARCHAR}, #{status,jdbcType=INTEGER}, 
  #{createtime,jdbcType=DATE}, #{roleid,jdbcType=INTEGER})
 </insert>

Corrected SQL (note that the field and table names are enclosed in ``)

<insert id="insert" parameterType="com.zhangman.manman.entity.User" >
  INSERT INTO `user`
   (username, `password`, `name`, `desc`, email, birthday, phone, `status`, createtime, roleId)
   VALUES (#{username}, #{password},#{name}, #{desc},#{email},
    #{birthday}, #{phone}, #{status},
    #{createtime}, #{roleid})
 </insert>

Supplement: MySql ERROR 1064 (42000) Same error, different solution

The code at the beginning is this:

Then run:

There is nothing wrong with the code, but why is it wrong? After spending 2 hours on it I finally found the answer.

I didn't add the semicolon!!!!!

Modified code:

Then run again:

Once again I feel despair at my own ignorance and carelessness! ! !

The above is my personal experience. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM. If there are any mistakes or incomplete considerations, please feel free to correct me.

You may also be interested in:
  • Detailed explanation of the usage of MySQL memory tables and temporary tables
  • Some problems you may encounter when installing MySQL
  • Solve the problem of no my.cnf file in /etc when installing mysql on Linux
  • MySQL select results to perform update example tutorial
  • MYSQL slow query and log settings and testing
  • The difference between MySQL user management and PostgreSQL user management

<<:  HTML table tag tutorial (13): internal border style attributes RULES

>>:  Implementation of automatic completion of Docker commands

Recommend

CSS3 realizes draggable Rubik's Cube 3D effect

Mainly used knowledge points: •css3 3d transforma...

Solve the problem of specifying udp port number in docker

When Docker starts a container, it specifies the ...

Gradient slide effect implemented by CSS3

Achieve results Code html <div class="css...

Detailed introduction to deploying k8s cluster on centos7 system

Table of contents 1 Version and planning 1.1 Vers...

mysql 5.7.11 winx64.zip installation and configuration method graphic tutorial

Install and configure the MySql database system. ...

Introduction to the use and disabling of transparent huge pages in Linux

introduction As computing needs continue to grow,...

Detailed explanation of some settings for Table adaptation and overflow

1. Two properties of table reset: ①border-collaps...

uniapp realizes the recording upload function

Table of contents uni-app Introduction HTML part ...

Introduction to JavaScript Number and Math Objects

Table of contents 1. Number in JavaScript 2. Math...

CSS makes tips boxes, bubble boxes, and triangles

Sometimes our pages will need some prompt boxes o...

Detailed steps to install RabbitMQ in docker

Table of contents 1. Find the mirror 2. Download ...

Border-radius IE8 compatible processing method

According to canisue (http://caniuse.com/#search=...

MySQL optimization query_cache_limit parameter description

query_cache_limit query_cache_limit specifies the...