mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-04 01:01:41 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@8124 201d5d3c-b55e-5fd7-737f-ddc643e51545
19 lines
912 B
XML
19 lines
912 B
XML
<query id="getVotedMemberList" action="select">
|
|
<tables>
|
|
<table name="document_voted_log" alias="voted_log" />
|
|
<table name="member" alias="member" />
|
|
</tables>
|
|
<columns>
|
|
<column name="member.member_srl" alias="member_srl" />
|
|
<column name="member.nick_name" alias="nick_name" />
|
|
</columns>
|
|
<conditions>
|
|
<condition operation="equal" column="voted_log.document_srl" var="document_srl" filter="number" notnull="notnull" />
|
|
<condition operation="equal" column="voted_log.member_srl" default="member.member_srl" pipe="and" />
|
|
<condition operation="more" column="voted_log.point" var="more_point" pipe="and" />
|
|
<condition operation="below" column="voted_log.point" var="below_point" pipe="and" />
|
|
</conditions>
|
|
<navigation>
|
|
<index var="sort_index" default="voted_log.regdate" order="desc" />
|
|
</navigation>
|
|
</query>
|