I am trying to transform ER-model to Relational model and then to SQlite3 code.
In the ER-model I write the relationship for example:
Customer - has - Order
(Where Customer and Order are entities. Has is the relationship)
I know I need to transform the entities into tables and their attributes to fields of that table
But, should I create a table of the "has" relationship between "Order" and "Customer" -entities?
I should, According to this article: https://www.google.com/amp/s/www.geeksforgeeks.org/mapping-from-er-model-to-relational-model/amp/