Hello-
I am trying to insert items through SQL using INSERT INTO Queries.
Inserting into the ITEM table is no problem...I got that..
Inserting into the SupplierList table is a bit challenging currently I am doing the following..
1)
insert into Item (ItemLookupCode, random other fields) values (888899991, random other fields)
I then lookup the itemID and get 105501 then do the following
2)
insert into SupplierList ( itemid, Cost, ReorderNumber) values ( 105501, 3.3, '343-34')
Is this a correct way to do this? I am new to SQL
thanks
joseph
*This post is locked for comments