Is there a way to apply a single query across the concatenated rows of multiple tables? I have several tables storing metrics data, where data is initially collected in 10 second intervals, but is periodically rolled up into 1 minute intervals in another table and ultimately into 10 minute intervals in a third table.
That is, I want to be able to do something like:
SELECT value FROM table1 + table2 + table3
WHERE age(current_timestamp, time) > '2 days'
AND metrics_name = 'foo';
I don't think a JOIN operation is the right solution here. It looks like I can get the result I want using the UNION operator, which would look something like:
SELECT value from TABLE1 ...
UNION SELECT value FROM table2 ...
UNION SELECT value from TABLE3 ...
Where ... is the contents of my WHERE clause (etc), but this gets messy very quickly if the individual SELECT queries are complicated (and fails the "don't repeat yourself" mantra). Is there a different way of cracking this particular nut?
unionmay be the best option.union allis possibly an option too, but you don't give us much detail to work with