123456789101112131415161718 |
- <?xml version="1.0" encoding="UTF-8"?>
- <das-client>
- <Sqls>
- <Sql name='Q_getSubscriptionQueueList'><![CDATA[
- select @a from Q_SUBSCRIPTIONQUEUE a left join Q_SUBSCRIPTIONCANCEL b on a.reserveid=b.reserveid where @b
- ]]></Sql>
-
- <Sql name='Q_getSubscriptionQueue'><![CDATA[
- select @a from Q_SUBSCRIPTIONQUEUE a left join Q_SUBSCRIPTIONCANCEL b on a.reserveId = b.reserveId where a.queueNo = ? and b.reserveId is null
- ]]></Sql>
- <Sql name='Q_getSubQueueList'><![CDATA[
- select @a from Q_SUBSCRIPTIONQUEUE a
- left join Q_QUEUEINFO b on a.queueno = b.queueno
- left join Q_SUBSCRIPTIONCANCEL c on a.reserveId = c.reserveId
- where c.reserveId is null and a.subno=b.currentno
- ]]></Sql>
- </Sqls>
- </das-client>
|