does it work if you combine the SQL onto a single line? like ``` `SELECT * FROM categories JOIN imag

does it work if you combine the SQL onto a single line? like
`SELECT * FROM categories JOIN images_categories ON categories.id = images_categories.category_id JOIN images ON images_categories.image_id = images.id;`
Was this page helpful?