这是一个任务的问题。有人能帮帮我吗?
准则
给出的数据字典

终于问了我的问题


发布于 2021-12-11 00:25:12
你可能会明白,我无法解决你的任务:总有一天,你可能会为我将要使用的飞机或医疗设备编写任务关键系统,我想确保你拥有所需的所有技能;-)
但这里有一些提示可以指导你:
- if every employee belongs to a department, do you think that `Employee.Department_id` is nullable ?
- if several employees may belong to the same department department, do you think that `Employee.Department_id` is unique ?
- What with the descriptions and examples?- the cardinalities between the entities and relationships are definitively missing.
- Primary key attributes should be underlined.
- Foreign keys are usually not shown, since they are deduced from the relationships and cardinality.- Primary keys are well identified. But there are problems with the foreign keys: put a `FK` only in front of the columns identified as foreign key in data dictionary.
- between the entities, you should use the right symbols to reflect the cadinality (simple bar on the side where one item corresponds, crowfoot bars on the side where several items corrspond, and o on the side where there could be no item)
- While it is possible to simply show the relationship between entities by connecting them to the table header or the bottom line, in a detailed diagram showing all the field, it is better to graphically connect the boexes at the level of the primary and foreign keys that implement the relationship.https://stackoverflow.com/questions/70231646
复制相似问题