Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Order BY memo field?
Message
 
 
À
30/05/2002 14:36:05
Information générale
Forum:
Visual FoxPro
Catégorie:
Base de données, Tables, Vues, Index et syntaxe SQL
Divers
Thread ID:
00663159
Message ID:
00663163
Vues:
14
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--
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform