> > Hm.. Well you can do:
> >
> > SELECT myfield1, myfield2 DISTINCT FROM...
> >
> > without a problem. So it's something peculiar to TOP.
>
>Not really. There is a bug in the syntax checking for DISTINCT. And the
>error message is rather unhelpful.
I don't know what you're saying. I just did this in VFP 9 SP 1:
CREATE TABLE junk FREE ( ;
foo C(10), ;
bar C(10) )
FOR x = 1 TO 10
INSERT INTO junk (foo,bar) ;
VALUES ("foo" + TRANSFORM(x), "bar" + TRANSFORM(x))
ENDFOR
SELECT junk.foo, junk.bar DISTINCT FROM junk WHERE "5" $ foo INTO CURSOR mytest
SELECT mytest
BROWSE && One row containing "foo5" and "bar5"
Works fine.
Ken Dibble
www.stic-cil.org
_______________________________________________
Post Messages to: [email protected]
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
Searchable Archive: http://leafe.com/archives/search/profox
This message:
http://leafe.com/archives/byMID/profox/[email protected]
** All postings, unless explicitly stated otherwise, are the opinions of the
author, and do not constitute legal or medical advice. This statement is added
to the messages for those lawyers who are too stupid to see the obvious.