You're tasked with implementing a many-to-many relationship between two tables in a database. How would you achieve this using SQL?

  • Create a Junction Table
  • Use Foreign Keys and Triggers
  • Implement Subqueries
  • Utilize Views and Stored Procedures
To implement a many-to-many relationship in a database, creating a Junction Table is a common approach. This involves creating a separate table to represent the relationship between the two entities. The correct option suggests using a Junction Table.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *