Hi,
I have two connections that are two different databases. I am hoping to create a view that can reference both connections. Is there a way to do this? Ideally I am hoping to create a derived table using both connections like this:
Connection a.table1
Connection b.table2
- view: test
derived_table:
sql: |
select * from a.table1 JOIN b.table2 on a.table1.id = b.table2.id