묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
xml 쿼리 질문드립니다.
2010.12.29 11:11
xml 쿼리가 생각한 것처럼 동작하지 않아 질문 드려요.
SELECT * FROM xe_menu_item WHERE url='url' AND parent_srl != 'parent_srl'
이 쿼리문을 쓰기 위해 xml 쿼리를 다음과 같이 썼습니다.
<query id="getTest" action="select">
<tables>
<table name="menu_item" />
</tables>
<columns>
<column name="*" />
</columns>
<conditions>
<condition operation="equal" column="url" var="url" pipe="and" />
<condition operation="notequal" column="parent_srl" var="parent_srl" notnull="notnull" />
</conditions>
</query>
제가 틀린 부분이 있나요?;
체크 부탁드립니다.
---------------------
class 에서는 이렇게 쓰고 있습니다.
$args->url = $url;
$args->parent_srl = '0';
$output = executeQuery('widgets.getTest', $args);
댓글 1
-
SMaker
2010.12.29 15:18
-
마리모
2010.12.29 15:26
헐.... ......... .......... 답변 감사합니다ㅠㅠ 삽질의시간들이 왠지 허무함으로 다가오네요.
<condition operation="equal" column="url" var="url"
pipe="and"/><condition operation="notequal" column="parent_srl" var="parent_srl" notnull="notnull" pipe="and" />