hello i was wondering about using count in selects that involve multiple tables.
 
if i have something like this:
 
select * from
table1 left join table2
on (clause here)
and count > 0
and count <= 10
 
which table does it get the count from?
 
is it table1, table2 or is it the number of results that it returns?
 
TIA,
Alan

Reply via email to