I am currently building an B2B ecommerce site. Currently i am stuck at defining special price for a customer for a specific item.
I have two tables which is:
- Customer (Regular customer details, like name, password etc)
- Items (With default price listed)
A customer can have special prices for some products. Like:
Item A (costs $10 (default price)) Customer A got a discount for Item A (costs $7 for Customer A)
What i had in my mind, was just a middle table with (Customer (FK), Item (FK), Special price)
Will that be a good practice?
Thanks!
You have a many-to-many relationship between customers and items, where a customer may benefit a special price for 0 to N items, and an item may be offered at a special price to 0 to N customers.
As you are guessing already, the proper way to represent this relationship is to create a separate table, called a bridge table, that references both other tables through foreign keys. Customer/item tuples must be unique in the bridge table (a simple way to enforce this is to make the columns tuple the primary key of the table).
Sample ddl:
Now, say you want to retrieve the price of a given item for a given customer, you would do:
... where
:customer_id
and:item_id
represent the concerned customer and item.