Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在超集文档中说,不可能查询/连接多个表。
我可以一次查询/加入多个表吗? 不是直接没有。Superset SQLAlchemy 数据源只能是单个表或视图。
但根据我的经验,我可以毫无问题地做到这一点。它是过时的文档,还是我还不明白的东西?
是的,superset sql lab 支持一次连接多个表。
select * from charles.m_jdbc_3 m left join druid.druid_supervisors d on m.id=d.id where m.id={{id_value}} and m.value={{value_key}}
不可能简单地进行连接..
https://github.com/apache/incubator-superset/issues/875