Viewing post 1 (of 1 total)
Because you emulator will not allow Count(Distinct(marq)) then try
select count(marq) from Car c
where c.no IN (select max(no) from Car group by marq)
assuming that [no] is a record key.
February 2, 2006 at 4:04 am
#618337