19 lines
714 B
XML
19 lines
714 B
XML
<?xml version="1.0" encoding="UTF-8" ?>
|
||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||
|
||
<!-- 网盘电影 Mapper XML:存放复杂SQL,简单CRUD由MyBatis-Plus BaseMapper自动提供 -->
|
||
<mapper namespace="com.wangpan.common.dal.mapper.DriveMovieMapper">
|
||
|
||
<!-- 查找用户所有网盘下的重复电影(按 title 分组,出现次数 > 1) -->
|
||
<select id="findDuplicateMovies" resultType="java.util.Map">
|
||
SELECT title, COUNT(*) AS cnt
|
||
FROM wp_drive_movie
|
||
WHERE user_id = #{userId} AND status = 'active'
|
||
GROUP BY title
|
||
HAVING COUNT(*) > 1
|
||
ORDER BY cnt DESC
|
||
</select>
|
||
|
||
</mapper>
|