I have two tables that have the same structure; one contains permanaent data, and one is cleared and reset on a regular basis.
I need to make the same select statement work on both as if they were just one table
This is what I tried:
SELECT * FROM a
,b
WHERE 1;
Where a
and b
have the same structure;