0
I’m in doubt about best practice to create a certain table.
I have the table "Texts":
My problem is with the column "authorship". Because the authorship has 3 options see:
If the user selects the second option he will enter the name of the co-author. In this case I was thinking of concatenating "author in partnership with co-author" and inserting it into the database
This is a good way ? someone has some more efficient suggestion to resolve this situation ?
For your database to be normalized you should have a separate table with the authors and a link table (representing an N:N relationship) making the author relation - text.
– anonimo