GraphicsFactory
Programmer
I am trying to return the results of two tables with one query. The problem is results from only one table are getting returned. Here is my query...
SELECT * FROM table1,table2 WHERE table1.ID = table2.LinkID OR table1.ID = '$ID' ORDER BY table2.dotTimestmp,table1.Timestmp DESC
What mistake did I make in that query?
SELECT * FROM table1,table2 WHERE table1.ID = table2.LinkID OR table1.ID = '$ID' ORDER BY table2.dotTimestmp,table1.Timestmp DESC
What mistake did I make in that query?