Posts by Rogger • 43 points
1 post
-
4
votes1
answer72
viewsQ: Best way to design Classes from the database?
What is the best way to design Classes from the Database schema below: Usuario(id INTEGER PK, desc TEXT); Amigo(idA INTEGER, idB INTEGER, PK(idA,idB), FK(idA) REFERENCES Usuario(id)); This means…