3
votes
3answers
310 views
Problem joining on the highest value in mysql table
I have a products table...
and a revisions table, which is supposed to track changes to product …
0
votes
3answers
32 views
0
votes
Many to many query
select
`p`.`id`,
`p`.`name`
from `Sections` as `s`
join `Products_sections` as `ps` on `ps`.`section_id` = `s`.`id`
join `Products` as `p` on `p`.`id` = `ps`.`product_id`
where `s`.`id` in …
