Can you please let me know if the database design below is correct or need to be modified. please ignore the sql syntax

I have used One to Many relationships between entities as you can see the Database design attached:

CREATE TABLE CUSTOMERS(CUSTOMERID CHAR(10) PRIMARY KEY)

CREATE TABLE TRANSPOTERS(TCOMPANYID CHAR(10) PRIMARY KEY)

CREATE TABLE DRIVERS(DRIVERID CHAR(10) PRIMARY KEY)

CREATE TABLE ADVERTS(ADVERTSID CHAR(10) PRIMARY KEY, 
                     CUSTOMERID CHAR(10), 
                     TCOMPANYID CHAR(10) FOREIGN KEY CUSTOMERID, 
                     TCOMPANYID REFERENCES (CUSTOMERS.CUSTOMERID, TRANSPORTERS.TCOMPANYID))

CREATE TABLE BIDS(BIDID CHAR(10) PRIMARY KEY, 
                  TCOMPANYID CHAR(10), DRIVERID CHAR(10)
                  FOREIGN KEY DRIVERID, TCOMPANYID REFERENCES (DRIVERS.DRIVERID, TRANSPORTERS.TCOMPANYID))

(CUSTOMERS & TRANSPOTERS) - ONE TO MANY - ADVERTS

(TRANSPORTERS & DRIVERS)  - ONE TO MANY  - BIDS

BIDS TABLE                - MANY TO ONE  - ADVERTS

These are my requirements:

  • a customer can place multiple advertisment
  • transport company can place multiple advertisment
  • transport company can also place bids on existing advertisment
  • drivers can place bids on same existing advertisment
  • one advertisment can have multiple bids (placed by drivers/Transporters)
  • each BidId refers/belongs to a specfic advertisment

I am bit confused what happen if there are two parent tables and one child table how to create one to many relationship using foreign key and primary key reference?

If I keep the primary key in each master table and respective foreign keys in one child table there is a chance that it might hold null values for the first or second parent keys.

Thanks,

link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.