Oracle DB version:11.2.0.4
I want to convert the following to ANSI SQL .
SELECT ASTXA.sku_val
FROM s_asset_xa ASTXA,
s_asset ASSET,
s_prod_int PRD
WHERE
ASSET.row_id = ASTXA.asset_id(+)
AND ASSET.prod_id = PRD.row_id(+)
AND PRD.fulflmnt_item_code = '318XA'
AND ASTXA.attr_flag = 'NMD'
I have around 20 big SQLs which I need to convert to ANSI SQL . Are there any easy tricks that I can follow to convert the old Oracle Style joins to ANSI joins ?