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:
|
<<: HTML table tag tutorial (13): internal border style attributes RULES
>>: Implementation of automatic completion of Docker commands
Mainly used knowledge points: •css3 3d transforma...
When Docker starts a container, it specifies the ...
Achieve results Code html <div class="css...
Table of contents 1 Version and planning 1.1 Vers...
Install and configure the MySql database system. ...
introduction As computing needs continue to grow,...
1. Two properties of table reset: ①border-collaps...
Table of contents uni-app Introduction HTML part ...
Table of contents 1. Number in JavaScript 2. Math...
When I turned on my MAC at night, I found that th...
This article mainly introduces the differences be...
Sometimes our pages will need some prompt boxes o...
Table of contents 1. Find the mirror 2. Download ...
According to canisue (http://caniuse.com/#search=...
query_cache_limit query_cache_limit specifies the...