【发布时间】:2022-03-11 07:04:20
【问题描述】:
我正在尝试更改 Tableau 仪表板的后端数据库。 Tableau 正在生成具有以下条件的 JOIN SQL:
ON a.col1 = b.col2 OR (a.col1 is null and b.col2 is null)
有没有办法避免出现OR (a.col1 is null and b.col2 is null) 条件?我用列名尝试了 ZN 和 IFNULL ,但仍然添加了这样的条件。 Druid DB 仅在相等条件下支持 JOIN,并且由于 IS NULL 检查,查询失败。谢谢
标签: druid tableau-desktop