0
I have a class diagram and would like to know how to build the database. Follow the scenario:
With the classes below I have a Demand that has a requester and an analyst, right next to each of the classes I must have a list of demands?
In this case as would the database, requester id and analysts id would be PK in their tables and fk in the DEMANDS table?
and in the case of the list of demands in Requesters and Analysts as would be in the BD, what kind of data?
Requester
- ID_SOLICITANTE - NOME - LOTACAO - DEMANDAS (LIST)
Analyst
- ID_ANALISTA - NOME - EQUIPE - DEMANDAS (LIST)
Demands
ID_DEMANDA NRO_TICKET PRIORIDADE ANALISTA (Tipo: Analista) SOLICITANTE (Tipo: Solicitante)
And what is the database manager: Oracle Database? Mysql? Sql Server? etc.
– José Diz
Postgresql eh o sgdb.
– Deivson Bezerra