doc-exports/docs/dws/tool/dws_mt_0215.html
Lu, Huayi 346ac31da9 DWS TG 8.1.3.200 VERSION
Reviewed-by: Pruthi, Vineet <vineet.pruthi@t-systems.com>
Reviewed-by: Jiang, Beibei <beibei.jiang@t-systems.com>
Co-authored-by: Lu, Huayi <luhuayi@huawei.com>
Co-committed-by: Lu, Huayi <luhuayi@huawei.com>
2023-08-28 09:20:17 +00:00

44 lines
2.6 KiB
HTML

<a name="EN-US_TOPIC_0000001233800683"></a><a name="EN-US_TOPIC_0000001233800683"></a>
<h1 class="topictitle1">OUTER QUERY (+)</h1>
<div id="body8662426"><p id="EN-US_TOPIC_0000001233800683__en-us_topic_0238518393_en-us_topic_0237362164_en-us_topic_0202727300_p13679234924">Join is supported in Gauss 18.2.0, so parameter <strong id="EN-US_TOPIC_0000001233800683__en-us_topic_0237712417_b11797101684417">supportJoinOperator </strong>is added.</p>
<p id="EN-US_TOPIC_0000001233800683__en-us_topic_0238518393_en-us_topic_0237362164_en-us_topic_0202727300_p1345983114457"><strong id="EN-US_TOPIC_0000001233800683__en-us_topic_0237712417_b1316473418444">OUTER QUERY (+) </strong>can be migrated when <strong id="EN-US_TOPIC_0000001233800683__en-us_topic_0237712417_b10164183474418">supportJoinOperator </strong>is set to <strong id="EN-US_TOPIC_0000001233800683__en-us_topic_0237712417_b616433404414">false</strong>.</p>
<p id="EN-US_TOPIC_0000001233800683__en-us_topic_0238518393_en-us_topic_0237362164_en-us_topic_0202727300_p1546063112453"><strong id="EN-US_TOPIC_0000001233800683__en-us_topic_0237712417_b1620173194414">Input-OUTER QUERY(+)</strong></p>
<pre class="screen" id="EN-US_TOPIC_0000001233800683__en-us_topic_0238518393_en-us_topic_0237362164_en-us_topic_0202727300_screen15098402">SELECT PP.PUBLISH_NO
FROM SPMS_PARAM_PUBLISH PP
WHERE PP.PUBLISH_ID(+) = TB2.PUBLISH_ID;
SELECT I.APP_CHNAME, I.APP_SHORTNAME
FROM SPMS_APPVERSION SA, SPMS_APP_INFO I
WHERE SA.APP_ID = I.APP_ID(+)
AND SA.DELIVERY_USER = IN_USERID
ORDER BY APPVER_ID DESC ;</pre>
<p id="EN-US_TOPIC_0000001233800683__en-us_topic_0238518393_en-us_topic_0237362164_en-us_topic_0202727300_p24605316453"><strong id="EN-US_TOPIC_0000001233800683__en-us_topic_0237712417_b17200313441">Output</strong></p>
<pre class="screen" id="EN-US_TOPIC_0000001233800683__en-us_topic_0238518393_en-us_topic_0237362164_en-us_topic_0202727300_screen446043112452">SELECT
PP.PUBLISH_NO
FROM
SPMS_PARAM_PUBLISH PP
WHERE
PP.PUBLISH_ID (+) = TB2.PUBLISH_ID
;
SELECT
I.APP_CHNAME
,I.APP_SHORTNAME
FROM
SPMS_APPVERSION SA
,SPMS_APP_INFO I
WHERE
SA.APP_ID = I.APP_ID (+)
AND SA.DELIVERY_USER = IN_USERID
ORDER BY
APPVER_ID DESC
;</pre>
</div>
<div>
<div class="familylinks">
<div class="parentlink"><strong>Parent topic:</strong> <a href="dws_mt_0104.html">Oracle Syntax Migration</a></div>
</div>
</div>