I have two computers located at two stores. One is with the ip 192.168.10.100, another is with the ip 192.68.10.200. Both computers has database have database: StoreInformation. Both databases have table: Inventory. Both tables have ItemNum, ItemDescription, and Quantity.
I want to sum the total of quantity for each individual items on both tables.
Eg.
Store1->StoreInformation->Inventory
ItemNum ItemDescription Quantity
000001 Apple 10
000002 Pear 15
Store2->StoreInformation->Inventory
ItemNum ItemDescription Quantity
000001 Apple 8
000002 Pear 21
I want to result to show:
ItemNum ItemDescription Quantity
000001 Apple 18
000002 Pear 36
Thank you for your help in advance.