Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BE] 스터디 전체 조회 API 중 스터디 제목으로 검색하는 부분 수정 #86

Merged
merged 6 commits into from
Jul 1, 2022
3 changes: 2 additions & 1 deletion backend/src/main/resources/mapper/study.xml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@
]]>
</if>
<if test="studyTitle != null">
and s.study_title like concat("*", #{studyTitle}, "*")
and s.study_title like concat("%", #{studyTitle}, "%")

</if>
</trim>
group by s.study_id
Expand Down