Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Select statement using IN clase...???
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 8 SP1
OS:
Windows XP SP2
Network:
Windows 2003 Server
Database:
Visual FoxPro
Divers
Thread ID:
01123971
Message ID:
01124011
Vues:
15
This message has been marked as the solution to the initial question of the thread.
How about something like????
SELECT Cms.order_no, Cms.order_st2, Items.item_id, Items.item_state;
 FROM ;
     cms Cms ;
    LEFT OUTER JOIN items Items ;
   ON  Cms.order_no = Items.order_no;
 WHERE  Cms.order_st2 = ( 'PI' ) AND ;
 		(items.item_state in ('PI', 'CM'));
   AND cms.order_no IN (SELECT cms2.order_no FROM cms cms2,items items2;
                        WHERE cms2.order_no=items2.order_no 
                          AND cms2.order_st2="PI" 
                          AND items2.item_state in ('PI', 'CM');
                        GROUP BY 1 HAVING COUNT(DISTINCT items2.item_state) = 2)
>SELECT Cms.order_no, Cms.order_st2, Items.item_id, Items.item_state;
> FROM ;
> cms Cms ;
> LEFT OUTER JOIN items Items ;
> ON Cms.order_no = Items.order_no;
> WHERE Cms.order_st2 = ( 'PI' ) AND ;
> (items.item_state in ('PI', 'CM'))
>
>
>...what my problem is that I want this to show ONLY the records where there is both 'PI' and 'CM' in items.item_state field for a given Order_no. Is it possible to do this in a select statement or am I stuck writing a tiny prg to do it?
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform