Skip to content
Advertisement

MySQL substring to self join

I’m defining the relationship between the two tables using a join table. I want to arrange them in the order of many overlapping things. Currently, we are using subquery, is there a way to get the same result using join?

When the table is defined in this way, I want to arrange food tastes similar to Bob’s. I’m doing it like this now.

Is there a better way to change this method or use join? Thank you!!!

Advertisement

Answer

You have been inconsistent in your use of the table and column names –

Tables – PeopleFood in your sample data but you reference peopleFood in your query.

Columns – PeopleId and FoodId in your sample data but you reference people_id and food_id in your query.

Choose a naming convention and stick to it. Everyone has there own preference but the important thing is to be consistent.

The equivalent query with INNER JOIN instead of your sub-query is –

The performance difference between the two queries is unlikely to be noticeable and it might be argued that the intent is clearer in your version with the sub-query.

The surrogate key ID on your PeopleFood table should be dropped in favour of the compound “natural” primary key on people_id and food_id.

The Cost of Useless Surrogate Keys in Relationship Tables

User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement