jmraker
Say I have 3 tables: user, website and user_website
Where user_website has 3 fields
id (primary autoincrementing key)
user (foreign key to user.id)
website (foreign key to website.id)
What is this correct name of this table that joins/merges the user and website tables together?
Is it a Join table, Merge table, Foreign key table, or something else.
I want to name the function that updates these types of tables correctly.
Where user_website has 3 fields
id (primary autoincrementing key)
user (foreign key to user.id)
website (foreign key to website.id)
What is this correct name of this table that joins/merges the user and website tables together?
Is it a Join table, Merge table, Foreign key table, or something else.
I want to name the function that updates these types of tables correctly.
