I have 3 tables that I want to combine, see below for details:
product
- productID
- name
- price
prod_cat
- productID
- categoryID
category
- categoryID
- name
joined
product.productID category.categoryID product.name product.price category.name(each one though, since a product can belong to more than one category)
What I want to do is get each product with the categories that relate to them in a single query. How would I got about this?
You can use group_concat if using mySQL...
see this thread.
SQL to join one table to another table multiple times? (Mapping products to categories)
(possible duplicate)
You need two joins:
If a product could be in no categories and you still want to return it, change JOIN to LEFT JOIN in both places.
An alternative approach:
However it might be better just to use two queries instead of putting multiple values into a single cell.