Hello guys, I wanted to know if it’s possible to combine other data sources. Example if have MongoDB and google analytics, is it possible to make a query from 2 data source? or even 3 data sources? Do you have any guidelines about this? Thank you.
This site is in read only mode. Please continue to browse, but replying, likes,
and other actions are disabled for now.
1 Like
Hi there. Yes, this is one of my favorite things redash can do - QRDS. Start here:
https://redash.io/help/user-guide/querying/query-results-data-source
For example:
SELECT
a.name,
b.count
FROM cached_query_123 AS a
JOIN query_456 AS b
ON a.id = b.id
Cheers
2 Likes