Skip to content

Commit

Permalink
Merge pull request #83 from SWM-M3PRO/develop
Browse files Browse the repository at this point in the history
V1.1.0 다시 다시
  • Loading branch information
koomin1227 authored Sep 26, 2024
2 parents 9440989 + ce9ca66 commit 61f0616
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ List<VisitedUser> findAllVisitedUserByPixelId(
c.background_image_url AS profileImage
FROM pixel_user pu
JOIN community c ON pu.community_id = c.community_id
WHERE pu.pixel_id = :pixel_id AND pu.created_at >= current_date() AND pu.pixel_id != -1
WHERE pu.pixel_id = :pixel_id AND pu.created_at >= current_date() AND pu.community_id <> -1
GROUP BY pu.community_id;
""", nativeQuery = true)
List<VisitedCommunity> findAllVisitedCommunityByPixelId(
Expand Down

0 comments on commit 61f0616

Please sign in to comment.