묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
XML Query Order By 절을 여러개 지정 해줄 수는 없나요?
2015.02.24 23:42
XML Query는
<navigation> <index var="sort_index" default="document_srl" order="desc" /> </navigation>
이런 식으로 ORDER BY `document_srl` DESC
로 표현되는데
SELECT * FROM `xe`.`xe_police` ORDER BY `judge_status` != 0, `document_srl` DESC
이렇게 표현 하고 싶습니다만,
ORDER BY 구문을 중첩해서 사용 할 수는 없나요?
새해 복 많이 받으세요!
댓글 3
-
퍼니엑스이
2015.02.25 08:22
<navigation> 안에 <index>를 하나 더 넣으면 됩니다. -
DingGGu
2015.02.27 00:48
`judge_status` != 0,
이 구문을 표현 하려면 어떻게 하면 좋을까요?
-
DingGGu
2015.03.01 21:25
<navigation>
<index var="judge_status" default="judge_status" order="desc" />
<index var="sort_index" default="document_srl" order="desc" />
</navigation>가
[_query] => SELECT * FROM `pvpgn_police` as `police` ORDER BY `judge_status` desc, `document_srl` desc LIMIT 0, 20
로 표현 되는건 이해했습니다만
`judge_status` != 0, `document_srl` DESC
되도록 하기는 힘드네요. 혹시 알고 계신 분 있으시면 답변 부탁드립니다.
새해복 많이 받으세요 ^^