rhymix/classes/xml
Kijin Sung 20fa55a3fc Support HAVING in XML queries
GROUP BY에 사용되는 <groups> 태그 안에 <having> 태그를 넣을 수 있습니다.
문법은 <conditions> 부분에 적용되는 것과 같습니다.

<query id="queryId" action="select">
    ...
    <groups>
        <group column="document_srl" />
        <having>
            <condition operation="more" column="document_srl" var="myvar" default="0" />
        </having>
    </groups>
    ...
</query>

결과: SELECT ... GROUP BY document_srl HAVING document_srl >= 0
2018-07-03 15:40:52 +09:00
..
xmlquery Support HAVING in XML queries 2018-07-03 15:40:52 +09:00
GeneralXmlParser.class.php
XmlGenerator.class.php
XmlJsFilter.class.php 각종 PHP 7.2 에서 나는 워닝에러를 고침 2018-01-25 20:57:01 +09:00
XmlLangParser.class.php
XmlParser.class.php
XmlQueryParser.class.php