Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
This should be easy but...
Message
From
03/05/2001 12:41:41
 
 
General information
Forum:
Microsoft SQL Server
Category:
SQL syntax
Miscellaneous
Thread ID:
00502830
Message ID:
00503117
Views:
30
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.
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform