mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-07 02:31:40 +09:00
#19435955: 진행중(질의 오류 수정, 실행 코드 추가), 동작 검증 필요.
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@8020 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
f4373b04c4
commit
247f88eeb8
5 changed files with 77 additions and 4 deletions
|
|
@ -1,6 +1,6 @@
|
|||
<query id="updateDocumentSync" action="select">
|
||||
<query id="getCommentMemberSrlWithUserID" action="select">
|
||||
<tables>
|
||||
<table name="comment" alias="comment" />
|
||||
<table name="comments" alias="comments" />
|
||||
<table name="member" alias="member" />
|
||||
</tables>
|
||||
<columns>
|
||||
|
|
@ -8,7 +8,7 @@
|
|||
<column name="member.user_id" alias="user_id" />
|
||||
</columns>
|
||||
<conditions>
|
||||
<condition operation="equal" column="comment.user_id" default="member.user_id" filter="userid" />
|
||||
<condition operation="equal" column="comments.user_id" default="member.user_id" filter="userid" />
|
||||
</conditions>
|
||||
<group>
|
||||
<group column="member_srl" />
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
<query id="updateDocumentSync" action="select">
|
||||
<query id="getDocumentMemberSrlWithUserID" action="select">
|
||||
<tables>
|
||||
<table name="documents" alias="documents" />
|
||||
<table name="member" alias="member" />
|
||||
|
|
|
|||
11
modules/importer/queries/updateCommentSyncForCUBRID.xml
Normal file
11
modules/importer/queries/updateCommentSyncForCUBRID.xml
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
<query id="updateCommentSyncForCUBRID" action="update">
|
||||
<tables>
|
||||
<table name="comments" alias="comments" />
|
||||
</tables>
|
||||
<columns>
|
||||
<column name="comments.member_srl" var="member_srl" filter="number" />
|
||||
</columns>
|
||||
<conditions>
|
||||
<condition operation="equal" column="comments.user_id" var="user_id" />
|
||||
</conditions>
|
||||
</query>
|
||||
11
modules/importer/queries/updateDocumentSyncForCUBRID.xml
Normal file
11
modules/importer/queries/updateDocumentSyncForCUBRID.xml
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
<query id="updateDocumentSyncForCUBRID" action="update">
|
||||
<tables>
|
||||
<table name="documents" alias="documents" />
|
||||
</tables>
|
||||
<columns>
|
||||
<column name="documents.member_srl" var="member_srl" filter="number" />
|
||||
</columns>
|
||||
<conditions>
|
||||
<condition operation="equal" column="documents.user_id" var="user_id" />
|
||||
</conditions>
|
||||
</query>
|
||||
Loading…
Add table
Add a link
Reference in a new issue