What is the PK and FK i should assign to my table?

假如想象 提交于 2019-12-13 10:08:14

问题


A company provides transport services to high-ranked staffs. There are 3 tables: DRIVERS, VEHICLES, STAFFS.

DRIVERS - license number [PK] - name - language spoken - ... (and so on..)

VEHICLES - vehicle ID [PK] - registration number - model - colour - ... and so on...

STAFFS - staff ID [PK] - name - position name - ... and so on....

I want to create a new table called ORGANIZE whereby, it will assign a driver and a vehicle to match the needs of the staff. what will be the PK and FKs?


回答1:


I've written a more exhaustive answer over at your other question.
normalization of database

If you need to match a driver and a vehicle to a staff member, then you can do a three column composite pk with fk associations with the three other tables. You'll need to wire up your own logic to actually do the organization... this would not be done in the database, the db should just retain the results of the organization.



来源:https://stackoverflow.com/questions/12601416/what-is-the-pk-and-fk-i-should-assign-to-my-table

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!