I have the following SQL statement I need to
add a secondary where clause to
SELECT name, amount
FROM node, log
WHERE log.name (+) = node.name
Now I need to add run_date = '31-JAN-05',
I can not just add this statement since when I do
loose columns in the node table since there is
not a 1:1 match between the two tables.
--
add a secondary where clause to
SELECT name, amount
FROM node, log
WHERE log.name (+) = node.name
Now I need to add run_date = '31-JAN-05',
I can not just add this statement since when I do
loose columns in the node table since there is
not a 1:1 match between the two tables.
--
Comment