zoukankan      html  css  js  c++  java
  • mysql关联模糊查询他表字段

    如下:订单表关联了用户的id(多个),要根据用户名模糊查询订单信息,但是订单表只有id。创建视图用不着,咱也没权限。于是如下

    SELECT * FROM (
    SELECT cu.id AS 'id',cu.version AS 'version',cu.cid AS 'cid',cu.uid AS 'uid',cu.shopName AS 'shopName',cu.address AS 'address',
    cu.totalPrice AS 'totalPrice',cu.orderType AS 'orderType',
    cu.state AS 'state',cu.cCreateTime AS 'cCreateTime',cu.decorate AS 'decorate',cu.area AS 'area',cu.roomArea AS 'roomArea',
    cu.machinePrice AS 'machinePrice',cu.caid AS 'caid',
    cu.cooperationtypeid AS 'cooperationtypeid',cu.cooperationRebate AS 'cooperationRebate',cu.cooperationPrcie AS 'cooperationPrcie',
    cu.machineDiscount AS 'machineDiscount',cu.alreadyPaid AS 'alreadyPaid',cu.updateTime AS 'updateTime',cu.cooperationdeposit AS 'cooperationdeposit',
    cu.updateUserid AS 'updateUserid',cu.overseerId AS 'overseerId',cu.decorationQuotation AS 'decorationQuotation',cu.machineDeposit AS 'machineDeposit',
    us1.uName AS 'serviceuName',us2.uName AS 'updateName',cs.cName AS 'cName',se.sName AS 'serviceType',coop.ctName AS 'cooperationName'
    FROM `customerorder` AS cu
    LEFT JOIN `userdetail` AS us1 ON us1.id=cu.uid
    LEFT JOIN `userdetail` AS us2 ON us2.id=cu.updateUserid
    LEFT JOIN `customer` AS cs ON cs.id=cu.cid
    LEFT JOIN `servicetype` AS se ON se.id=cu.orderType
    LEFT JOIN `cooperationtype` AS coop ON coop.id=cu.cooperationtypeid)
    AS `customerorder`
    WHERE cCreateTime >='2018-1-1 01:10:11' AND cCreateTime<='2018-11-30 10:00:15'
    AND serviceuName LIKE CONCAT('%','业务','%')
    ORDER BY cCreateTime ASC
    LIMIT 0,10

    总结:

    1.为什么用left join 而不是join 或者inner join,你试一下就知道了。后两者在数据匹配不到的情况下整条记录都没有。

    2.时间类型用的是timestamp,因为方便省空间。但是时间段查询用bewteen就不行,所以只能用>=,<=

    顺便记录mybatis语句:

    SELECT * FROM (
    SELECT cu.id AS 'id',cu.version AS 'version',cu.cid AS 'cid',cu.uid AS 'uid',cu.shopName AS 'shopName',cu.address AS 'address',
    cu.totalPrice AS 'totalPrice',cu.orderType AS 'orderType',
    cu.state AS 'state',cu.cCreateTime AS 'cCreateTime',cu.decorate AS 'decorate',cu.area AS 'area',cu.roomArea AS 'roomArea',
    cu.machinePrice AS 'machinePrice',cu.caid AS 'caid',
    cu.cooperationtypeid AS 'cooperationtypeid',cu.cooperationRebate AS 'cooperationRebate',cu.cooperationPrcie AS 'cooperationPrcie',
    cu.machineDiscount AS 'machineDiscount',cu.alreadyPaid AS 'alreadyPaid',cu.updateTime AS 'updateTime',cu.cooperationdeposit AS 'cooperationdeposit',
    cu.updateUserid AS 'updateUserid',cu.overseerId AS 'overseerId',cu.decorationQuotation AS 'decorationQuotation',cu.machineDeposit AS 'machineDeposit',
    us1.uName AS 'serviceuName',us2.uName AS 'updateName',cs.cName AS 'cName',se.sName AS 'serviceType',coop.ctName AS 'cooperationName'
    FROM `customerorder` AS cu
    LEFT JOIN `userdetail` AS us1 ON us1.id=cu.uid
    LEFT JOIN `userdetail` AS us2 ON us2.id=cu.updateUserid
    LEFT JOIN `customer` AS cs ON cs.id=cu.cid
    LEFT JOIN `servicetype` AS se ON se.id=cu.orderType
    LEFT JOIN `cooperationtype` AS coop ON coop.id=cu.cooperationtypeid)
    AS `customerorder`
    <where>
    <if test="cid !=null and cid !=''">AND cid=#{cid}</if>
    <if test="uName !=null and uName !=''">AND serviceuName LIKE CONCAT('%',#{uName},'%')</if>
    <if test="startTime !=null">AND cCreateTime >=#{startTime}</if>
    <if test="endTime !=null">AND #{endTime}>=cCreateTime</if>
    <if test="orderBy==5">AND alreadyPaid>=totalPrice</if>
    <if test="orderBy==6">AND totalPrice>alreadyPaid</if>
    </where>
    <if test="orderBy==1">ORDER BY totalPrice ASC</if>
    <if test="orderBy==2">ORDER BY totalPrice DESC</if>
    <if test="orderBy==3">ORDER BY cCreateTime ASC</if>
    <if test="orderBy==4">ORDER BY cCreateTime DESC</if>
    <if test="pagesize>0">limit #{index},#{pagesize}</if>
  • 相关阅读:
    查看 SharePoint 2013 部署到GAC的自定义dll
    SharePoint 2013 设置customErrors显示实际的错误信息
    SharePoint 2013 配置开发环境,需安装VS2012插件
    SharePoint 2013 workflow cannot start automatically when you logged in site as a system account
    Sharepoint 2013 Workflow Error
    自定义HttpModule,用于未登录用户,不弹出Windows认证窗口,而是跳转回SSO站点
    jQuery异步请求模拟IE登录网站
    上传文件到 Sharepoint 的文档库中和下载 Sharepoint 的文档库的文件到客户端
    Hive桶列BucketedTables
    修改MySQL命令提示符
  • 原文地址:https://www.cnblogs.com/zeussbook/p/9999736.html
Copyright © 2011-2022 走看看