Good morning,
How can I join static query with the query result. If I want to join 2 queries result as one table with time as common column. How can I do this?
thanks in advance.
Good morning,
How can I join static query with the query result. If I want to join 2 queries result as one table with time as common column. How can I do this?
thanks in advance.
Use nested sub queries.
Select * from ( My first select query ) as q1 Inner join ( My second select query ) q2 ON q1.datetime = q2.datetime
15 People are following this question.