Hello there,
What is the expression I need to use to denote the 'many' column on my query, from previous experience i tried the (+) command as used in sqlplus on Oracle.
my query looks like this:
select a.type, l.description, count(a.type)
from
address a, lookup l
where l.code = a.type "a.type is the many column"
and l.code_type = 115
group by a.type, l.description
thanks in anticipation...
Naz
What is the expression I need to use to denote the 'many' column on my query, from previous experience i tried the (+) command as used in sqlplus on Oracle.
my query looks like this:
select a.type, l.description, count(a.type)
from
address a, lookup l
where l.code = a.type "a.type is the many column"
and l.code_type = 115
group by a.type, l.description
thanks in anticipation...
Naz