Hello, I have a mysql query, that does the following,
SELECT * FROM categoryTable
LEFT JOIN userMenuTable
ON userMenuTable.categoryId = categoryTable.categoryId
this returns only results that match this condition
ON userMenuTable.categoryId = categoryTable.categoryId
I was hoping it would be possible to pull all the results and also the ones from the JOIN?