Voici un diagramme ER pour un système de gestion ferroviaire :
```
+----------------+ +--------------+
| Former | | Plan d'itinéraire |
+----------------+ +--------------+
| identifiant (PK) | | route_id (PK) |
| numéro | | station_src |
| heure_arrivée | | des_station |
| heure_depart | | distance |
| prix | +--------------+
+----------------+
| |
| |
VV
----------------------------
|
Gare
+----------------+
| station_id (PK) |
| nom_station |
| ville |
+----------------+
--------------------------------
|
+----+----------+
| | |
VVV
Billet passager employé
+------------+ +-------------+ +--------------+
| emp_id (PK)| | identifiant (PK) | | ticket_id|
+------------+ +-------------+ +--------------+
| nom_emp | | nom | | date |
| emp_type | | âge | | numéro_train |
| salaire | +-------------+ | |
| | | |
| | ------
V ---------
---------------------
Réservation
```
|