DaveSatIBP
MIS
I am trying to update pricing through an intermediate table. The 3 tables in question are:
updated_prices, inv_detail, and pricing_detail
The updated_prices table consists of 3 columns: description, level, and price
The inv_detail table has several columns but I would join on description for the first table and try to join the pricing_detail table on the inv_ID field.
The pricing_detail table has inv_ID, price, and level fields.
The first table has approximately 400 rows and the pricing_detail table has over 3000 rows. I only need to update the rows in the pricing_detail table if exist in the update_prices table.
Any suggestions would be greatly appreciated.
updated_prices, inv_detail, and pricing_detail
The updated_prices table consists of 3 columns: description, level, and price
The inv_detail table has several columns but I would join on description for the first table and try to join the pricing_detail table on the inv_ID field.
The pricing_detail table has inv_ID, price, and level fields.
The first table has approximately 400 rows and the pricing_detail table has over 3000 rows. I only need to update the rows in the pricing_detail table if exist in the update_prices table.
Any suggestions would be greatly appreciated.