do you have a Supplier table that defines what is the supplier ID and the corresponding name ?something like create table Supplier( SupplierID int, SupplierName varchar(100) primary key (SupplierID))insert into Supplier (SupplierID, SupplierName) values (1, 'Bob')then you can use INNER JOIN to your Inventory table when you retrieve data from itselect Inventory.SupplierID, Supplier.SupplierName, Inventory.QtyOnHandfrom Inventory inner join Supplier on Inventory.SupplierID = Supplier.SupplierIDwhere Inventory.QtyOnHand > 0
KH[spoiler]Time is always against us[/spoiler]