exists在sql中的妙用

最近有两处功能都用到了exists, 觉得它很好地用子查询的方式实现了对主表数据的过滤

1. 支持历史记录id查询主id

那就用子查询过滤一下,主记录对应的历史记录中要存在当前id

sql 复制代码
        <if test="!searchHistoryFlag">
            and cbi.is_last_submit = 1
            <if test="searchSubmitId != null and searchSubmitId != ''">
                and exists (
                    select
                        1
                    from
                        bendcompete_info t
                    where
                        t.vendor_id = cbi.vendor_id
                        and t.submit_user_mobile = cbi.submit_user_mobile
                        and t.submit_year = cbi.submit_year
                        and t.submit_month = cbi.submit_month
                        and t.submit_id = #{searchSubmitId}
                )
            </if>
        </if>
        <if test="searchHistoryFlag">
            <if test="searchSubmitId != null and searchSubmitId != ''">
                and cbi.submit_id = #{searchSubmitId}
            </if>
        </if>

2. 相同会员品牌下取最新月的数据

由于年和月是分开存储的,为了比较月份谁大谁小,那就把年乘以12跟月份相加,统一按月份进行比较

月份可以理解为12进制的数据

sql 复制代码
        select rc.* 
        from  bendcompete_prize_receive_config rc
        where rc.prize_status = 1
           and not exists (
                select
                    1
                from
                    bendcompete_prize_receive_config rc2
                where
                    rc2.member_brand_id = rc.member_brand_id
                    and rc2.submit_year * 12 + rc2.submit_month > (rc.submit_year * 12 + rc.submit_month)
            )
相关推荐
2401_854391082 分钟前
Spring Boot框架下租房管理系统的设计与实现
数据库·spring boot·php
2401_857617626 分钟前
Spring Boot框架在中小企业设备管理中的创新应用
数据库·spring boot·后端
会飞的土拨鼠呀13 分钟前
Centos7.9安装MySQL(二进制)
android·数据库·mysql
白总Server14 分钟前
Gateway解说
服务器·网络·数据库·web安全·架构·php·idc
激流丶18 分钟前
【Mysql 深入探索】InnoDB 实现事务的机制
数据库·mysql·innodb
优维科技EasyOps27 分钟前
MongoDB 8.0 全新登场:究竟如何?
数据库·mongodb
hangbobo27 分钟前
监测mongodb服务并启动
数据库·mongodb
小黑哪有坏心思!1 小时前
Linux安装部署数据库:MongoDB
linux·运维·数据库·mongodb·nosql
搬码后生仔1 小时前
在 Windows 系统上设置 MySQL8.0以支持远程连接
数据库
菠萝加点糖1 小时前
ADB指定进程名称kill进程
数据库·adb