You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi @eslamodeh, you'd need to write it as a single query. For Postgres, you can use UNION ALL to combine two SELECT queries.
SELECT time_column_a AStime, 'Series A'AS series, numeric_column_a AS value FROM ...
UNION ALLSELECT time_column_b AStime, 'Series B'AS series, numeric_column_b AS value FROM ...
Hello,
Is it possible to merge multiple line charts to one chart? Or for example, have two select query that would show two line charts?
The text was updated successfully, but these errors were encountered: