springBoot报错: MyBatis:check the manual that corresponds to your MySQL server version

本文记录了一次使用Java的SpringBoot框架进行项目开发时遇到的MySQL语法错误经历,详细描述了错误原因及解决过程,强调了SQL语句中符号间空格的重要性。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

业务说明

昨天用java的SpringBoot写项目,底下是个查询语句(为了说明方便,使用*):

    select 
       *    
    from t_student
    where birthday    > = #{beforeDate} and birthday   <= #{nowDate}
    order by id
        /*       beforeDate是当前日期的前七天      */

报错:

com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: 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 '= '2018-11-14 09:42:22.383' and sign_time  <= '2018-11-07 09:42:22.383' ' at line 15

报错信息是:在SQL语法中有一个错误;请检查对应于MySQL服务器版本的正确语法使用的手册。

解决错误

检查了一下,表名、字段名等都没有问题,框架也正常。
我一开始以为是jdbcType的问题,就加上了jdbcType

    select 
       *    
    from t_student
    where birthday    &gt; = #{beforeDate,jdbcType=TIMESTAMP} and birthday   &lt;= #{nowDate,jdbcType=TIMESTAMP}
    order by id
        /*       beforeDate是当前日期的前七天      */

仍然报错。。。。。





揪了N多头发以后,终于发现,是>和=之间有个空格。。。。把空格删了就好了。

    select 
       *    
    from t_student
    where birthday    &gt;= #{beforeDate,jdbcType=TIMESTAMP} and birthday   &lt;= #{nowDate,jdbcType=TIMESTAMP}
    order by id
        /*       beforeDate是当前日期的前七天      */
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值