mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-28 14:52:24 +09:00
#19560480 추천 비추천 기능개선
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@8112 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
b230d45a71
commit
9b8e32d45b
10 changed files with 223 additions and 23 deletions
18
modules/document/queries/getVotedMemberList.xml
Normal file
18
modules/document/queries/getVotedMemberList.xml
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
<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.point" var="point" notnull="notnull" pipe="and" />
|
||||
<condition operation="equal" column="voted_log.member_srl" default="member.member_srl" pipe="and" />
|
||||
</conditions>
|
||||
<navigation>
|
||||
<index var="sort_index" default="voted_log.regdate" order="desc" />
|
||||
</navigation>
|
||||
</query>
|
||||
Loading…
Add table
Add a link
Reference in a new issue