mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-03 08:41:39 +09:00
- 카운터 모듈을 정리하여 불필요한 쿼리 및 트랜잭션 제거 - 매일 첫 방문시 쿼리 오류 발생하는 문제 해결 - 더이상 사용하지 않는 $site_srl 기준의 테이블은 삭제
13 lines
510 B
XML
13 lines
510 B
XML
<query id="getCounterLogStatus" action="select">
|
|
<tables>
|
|
<table name="counter_log" />
|
|
</tables>
|
|
<columns>
|
|
<column name="count(*)" alias="count" />
|
|
</columns>
|
|
<conditions>
|
|
<condition operation="equal" column="site_srl" var="site_srl" />
|
|
<condition operation="more" column="regdate" var="start_date" notnull="notnull" pipe="and" />
|
|
<condition operation="less" column="regdate" var="end_date" notnull="notnull" pipe="and" />
|
|
</conditions>
|
|
</query>
|