SELECT * FROM a JOIN b ON a.aid = b.bid JOIN c ON b.bid = c.cid WHERE a.subject LIKE "games" ORDER BY a.aid DESC;
It’s not returning any results or any error messages, so I guess with the lack of error messages I am kind of on the right vein, but it’s the lack of result(s) that is making something not work properly
I see what you mean there, but considering that there are joined tables i.e. multiple tables, the list would be dreadfully long in what I am doing, there are 21 columns to deal with, this is done over three tables. I had no option
Depends on your point of view. How many columns are in all three tables? 30? 40? 50? And how many rows are being returned? Depending on the types of fields being returned, you may run into memory issues.