Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
This should be easy but...
Message
 
 
À
02/05/2001 21:35:26
Information générale
Forum:
Microsoft SQL Server
Catégorie:
Syntaxe SQL
Divers
Thread ID:
00502830
Message ID:
00503117
Vues:
29
Actually, single table with:

TABLE: VENDOR
-------------
VendorID
Vendorname
Address
City
State
Zip
etc...

I want to retrieve all VendorID primary key where there are more than one vendor in any state.


>You want the ID of all vendors who service multiple states?
>
>Assuming two tables: vendors and VendorsInStates
>
>SELECT VendorID
>FROM VendorInStates
>GROUP BY VendorID
>HAVING COUNT(*) > 1
>
>If this isn't close, post the DDL.
>
>-Mike
It's "my" world. You're just living in it.
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform