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 NOISSUE code rearrange 2013-11-22 06:46:26 +09:00
XmlGenerator.class.php #66 install php version check 2013-11-19 13:32:39 +09:00
XmlJsFilter.class.php 각종 PHP 7.2 에서 나는 워닝에러를 고침 2018-01-25 20:57:01 +09:00
XmlLangParser.class.php PHP 5 방식의 생성자 (__construct) 사용 2015-04-01 11:30:04 +09:00
XmlParser.class.php Finalize debug data format and allow all statistics to be collected 2016-02-12 21:31:38 +09:00
XmlQueryParser.class.php Merge #1363 PHP 5 방식의 생성자 (__construct) 사용 by kijin 2015-10-08 14:10:32 +09:00