Would anyone like to assist in what is required ... I was guessing a
statement in the Where Condiction: box ... Like [Count(*),Unique_ID >
"1"] ... But I getting the syntax error message "Variable or Field
Count not defined".
I'm just starting to learn ... But still need to learn a lot more ...
And self teaching from Google is never the easiest method at the best
of times ... But I’d like to feel that it's a good place to look for
HELP!
> Would anyone like to assist in what is required ... I was guessing a
> statement in the Where Condiction: box ... Like [Count(*),Unique_ID >
> "1"] ... But I getting the syntax error message "Variable or Field
> Count not defined".
You have to do it in 2 steps:
select field,count(*) from table group by field into tmp
select * from tmp where col2>1
> I'm just starting to learn ... But still need to learn a lot more ...
> And self teaching from Google is never the easiest method at the best
> of times ... But I'd like to feel that it's a good place to look for
> HELP!
Best place to ask:
http://groups.google.com/group/mapinfo-l?hl=en
G'Day Uffe,
Thanks for your quick response ... I've tried your suggestion ... LOL
& Behold ... It works ... Again ... Ta.
Just wish it could of been done in one execution.
HooRoo
Hi,
look as "SQL subquery" in google... you might find interesting info
(though I haven't used MapInfo in a while, though it might be impossible
to apply)