hello,
I need to 'select distinct' on a character field
from a table like the following:
select distinct char1, memo1, memo2 from table1
order by char1 into cursor cursor1
The memo fields 'memo1 and memo2' are just remarks
I put in for the field 'char1', what I need to
for 'select distinct' to operate on is only the
field 'char1'
I understand 'distinct' doesn't operate on tables
with memo fields. Now how can I achieve my desired
result? Thank you.
--
jw