站保站

服务市场
  • 网站市场
  • 单机游戏
  • 平台大厅
  • 转让市场
  • 发卡市场
  • 广告市场
  • 下载市场
  • 收录市场
  • 本站平台
    平台客服
    微信Q群



    平台微博/weibo    平台微信/公众号    平台抖音/快手   
    曝光台    保障    地图   
    上传资源 快速赚钱
    站保站    登录      |  注册  |  

    只需一步,快速开始!

     找回密码   |   协议
    热门搜索: 网站开发 App报毒 挖矿源码 代办资质

    使用mybatis查出数据与mysql查出来的不一致(order by)_2020-10-23解决的BUG

    • 时间:2020-10-26 11:02 编辑:qq_39408729 来源: 阅读:45
    • 扫一扫,手机访问
    摘要:

    使用mybatis查出数据与mysql查出来的不一致(order by)_2020-10-23解决的BUG

    错误:
    xml拼接sql:
    select consequence.* from consequence
    <where>
        <include refid="getPageCondition"/>
    </where>
    <if test="page != null and page.orderBy != null and page.orderBy !=''">
        order by #{page.orderBy}
    </if>
    <include refid="order_by_sql"></include>
    <include refid="pageLimit"/>
    
    控制台输出的查询信息:
    select consequence.* from consequence WHERE consequence.id < ? and consequence.task_id = ? order by ? limit ? ,?
    Parameters: 170166(Long), 99(Long),  id desc (String), 0(Integer), 1(Integer)
    
    在mysql中执行的sql:
    SELECT
                    consequence.* 
            FROM
                    consequence 
            WHERE
                    consequence.id < 170166
                    AND consequence.task_id = 99
                    order by 'id' 'desc'
                    LIMIT 0, 1
    
    
    
    正确:
    xml拼接sql:
    select consequence.* from consequence
    <where>
        <include refid="getPageCondition"/>
    </where>
    <if test="page != null and page.orderBy != null and page.orderBy !=''">
        order by ${page.orderBy}
    </if>
    <include refid="order_by_sql"></include>
    <include refid="pageLimit"/>
    
    控制台输出的查询信息:
    select consequence.* from consequence WHERE consequence.id < ? and consequence.task_id = ? order by id desc limit ? ,? 
    Parameters: 170166(Long), 99(Long), 0(Integer), 1(Integer)
    
    mysql中执行的sql:
    SELECT
                    consequence.* 
            FROM
                    consequence 
            WHERE
                    consequence.id < 170166
                    AND consequence.task_id = 99
                    order by id desc
                    LIMIT 0, 1
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55

    参考文章

    • 全部评论(0)
    • 最新

    信息加载中,请等待

    微信客服(速回)

    微信客服(慢回)



    企业微信客服二维码
    联系我们
    平台客服: 平台QQ客服

    平台电话:400电话迁移中!

    平台邮箱:28292383@qq.com

    工作时间:周一至周五:早10:00 晚:18:00

    营业执照     网站ICP备案:鲁ICP备20027607号-1     鲁公网安备:37068702000078号     增值电信业务经营许可证、在线数据与交易处理业务许可证:鲁B2-20200681      © 2016-2024 站保站  https://www.zhanbaozhan.com/ 版权所有!      平台规范:   关于我们   广告合作   隐私条款   免责声明   法律声明   服务条款   网站地图   平台工单!