Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
How can I order the result according to inlist type data
Message
Information générale
Forum:
Visual FoxPro
Catégorie:
Base de données, Tables, Vues, Index et syntaxe SQL
Versions des environnements
Visual FoxPro:
VFP 9
OS:
Windows XP SP2
Network:
Windows 2003 Server
Database:
Visual FoxPro
Divers
Thread ID:
00968680
Message ID:
00968684
Vues:
9
This message has been marked as a message which has helped to the initial question of the thread.
Another possible solution.
SELECT customer_id, 0 AS nRecordOrd  ;
	FROM Customer ;
	WHERE customer_id IN (16, 10, 12, 15, 8, 1) ;
	INTO CURSOR curCustormer READWRITE 


REPLACE nRecordOrd WITH 1 FOR customer_id = 16
REPLACE nRecordOrd WITH 2 FOR customer_id = 10
REPLACE nRecordOrd WITH 3 FOR customer_id = 12
REPLACE nRecordOrd WITH 4 FOR customer_id = 15
REPLACE nRecordOrd WITH 5 FOR customer_id = 8
REPLACE nRecordOrd WITH 6 FOR customer_id = 1

INDEX ON nRecordOrd TAG nRecordOrd
>
>select customer_id  ;
>  from Customer ;
> where customer_id in (16, 10, 12, 15, 8, 1) ;
>  into cursor curCustormer
>
>
>How can I order the result cursor according to data in the set of inlist expressions
>
>Thank in advance
>
>Ali Altun
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform