Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Team,
I have a SQL Query which fetches data from two tables(ORDERS AND CUSTOMERS) as follows:
SELECT O.OrderID||'-'||c.CustomerID as ID from ORDERS O,CUSTOMERS c
WHERE NVL(O.OrderName, 'sometext') = NVL(c.CustomerName, 'sometext')
How to check above NVL condition in Talend.
Thanks
KK
"SELECT O.OrderID||'-'||c.CustomerID as ID from ORDERS O,CUSTOMERS c
WHERE NVL(O.OrderName, 'sometext') = NVL(c.CustomerName, 'sometext')"