PC Review


Reply
Thread Tools Rate Thread

combining DBs for universal list

 
 
=?Utf-8?B?UnlhbiBT?=
Guest
Posts: n/a
 
      16th Jun 2005
There's six different stores w/ all unique part numbers in their inventory
system. I'm building Oklahoma City's information system as the master
(primary key) key for a universal part numbering system. I want to know if
the other systems have any part #s that OKC doesn't have. Any help is
appreciated.

 
Reply With Quote
 
 
 
 
John Spencer (MVP)
Guest
Posts: n/a
 
      19th Jun 2005
If the data is in two different tables then try using the Unmatched query wizard
to build your query. Basic idea is

SELECT A.*
FROM [YourOKTable] as OKC
RIGHT JOIN OtherCityTable as A
ON OKC.[PartNumber] = A.[PartNumber]
WHERE OKC.[PartNumber] is Null

This will return the part numbers and other data in the Othercity's table that
is not in the Oklahoma City table.

Repeat for each of the other cities.

Ryan S wrote:
>
> There's six different stores w/ all unique part numbers in their inventory
> system. I'm building Oklahoma City's information system as the master
> (primary key) key for a universal part numbering system. I want to know if
> the other systems have any part #s that OKC doesn't have. Any help is
> appreciated.

 
Reply With Quote
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Combining two list of data Andy in Edinburgh Microsoft Excel Worksheet Functions 3 15th Aug 2008 02:11 PM
Combining the IF and List functions figurt@hotmail.com Microsoft Excel Programming 1 3rd Jul 2006 09:50 PM
Combining two Multiselect List Boxes Radar Microsoft Access Form Coding 2 15th Oct 2005 01:00 AM
list box combining =?Utf-8?B?cm1leWVyQHB1bGl6LmNvbQ==?= Microsoft Access Forms 1 2nd Apr 2005 12:20 AM
Universal address list from Access into Word. Frank Martin Microsoft Word New Users 0 13th Nov 2003 12:04 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 09:34 PM.