묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
xml 쿼리에서 중복된 컬럼값을 제거 하고싶습니다.
2017.09.08 15:32
<query id="getAllCategoryList" action="select">
<tables>
<table name="nproduct_items" />
<table name="nproduct_categories" />
</tables>
<columns>
<column name="*" />
</columns>
<conditions>
<condition operation="equal" column="nproduct_items.category_id" var="nproduct_categories.node_id" filter="number" notnull="notnull" />
</conditions>
</query>
조인한 쿼리문에서
중복된 컬럼값을 제거 하고싶은데 방법이없을까요?
<groups>
<group column="칼럼명" />
</groups>
을 </conditions> 뒤에 설정하면 되긴하는데
( member/queries/getMemberListWithinGroup.xml 참고 )
grouping 에 대한 정렬이 마음대로 안 되는 한계가 있긴해요