Here's the SQL (Oracle):
select a.name, b.amount
from users a, quota b
where a.name = b.name(+)
order by a.name;
The problem is the rows returned that don't have a corresponding record in the quota table. The amount field is displayed as blank/null, but I need it to display as a 0.
Is this trivial for a rookie like me?
-thanks
select a.name, b.amount
from users a, quota b
where a.name = b.name(+)
order by a.name;
The problem is the rows returned that don't have a corresponding record in the quota table. The amount field is displayed as blank/null, but I need it to display as a 0.
Is this trivial for a rookie like me?
-thanks