이 글은 MySQL 쿼리 결과의 in() 순서에 대한 자세한 설명을 중심으로 소개하고 있으니 도움이 필요한 친구들에게 도움이 되었으면 좋겠습니다
상세 설명입니다. Mysql 쿼리 결과는 ID 순서로 in() )
예제 코드:
<select id="queryGBStyleByIDs" resultMap="styleMap"> select style_num_id ,style_id,style_title,style_pic FROM gb_style where online = 1 AND is_hide = 0 and style_num_id in <foreach collection="styleNumIDs" item="styleNumId" separator="," open="(" close=")"> #{styleNumId} </foreach> ORDER BY FIELD <foreach collection="styleNumIDs" item="styleNumId" separator="," open="(style_num_id," close=")"> #{styleNumId} </foreach> </select>
최종 출력 sql은 다음과 같습니다.
select style_num_id ,style_id,style_title,style_pic FROM gb_style where online = 1 AND is_hide = 0 and style_num_id in (1,3,2,5) order by field (style_num_id,1,3,2,5);
위 내용은 in()에서 ID순으로 정렬된 MySQL 쿼리 결과 분석 예시의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!