mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-04 01:01:41 +09:00
14 lines
543 B
XML
14 lines
543 B
XML
<query id="getDocumentSrlByTitle" action="select">
|
|
<tables>
|
|
<table name="documents" />
|
|
<table name="modules" />
|
|
</tables>
|
|
<columns>
|
|
<column name="document_srl" />
|
|
</columns>
|
|
<conditions>
|
|
<condition operation="equal" column="title" var="title" notnull="notnull" />
|
|
<condition operation="equal" column="modules.module_srl" var="module_srl" notnull="notnull" pipe="and" />
|
|
<condition operation="equal" column="modules.module_srl" var="documents.module_srl" filter="number" notnull="notnull" pipe="and" />
|
|
</conditions>
|
|
</query>
|