Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Order BY memo field?
Message
 
 
To
30/05/2002 14:36:05
General information
Forum:
Visual FoxPro
Category:
Databases,Tables, Views, Indexing and SQL syntax
Miscellaneous
Thread ID:
00663159
Message ID:
00663163
Views:
13
This message has been marked as the solution to the initial question of the thread.
>The following is not working (must be a brain cramp today). What have I done wrong? ctrlset is the table and reportname is a memo field.
>
>
>select * from ctrlset ORDER BY (PADR(reportname,254))
>
>
>TIA,
>Tracy

VFP accepts either field name or column number in the ORDER BY clause. Try instead
select *, PADR(reportname,254) AS SortField ;
   from ctrlset ORDER BY SortField
--sb--
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform