dremio 外部查询
作者:互联网
外部查询
SELECT * FROM table(mdm_oracle.external_query('select * from mdm.ITMD_HR_PSCNL'))
引号的处理
注意不是双引号,而且两个单引号
SELECT * FROM table(mdm_oracle.external_query('select * from mdm.ITMD_CUST where ts > ''2021-08-02'''))
说明
使用dremio 外部查询可以解决我们一些直接使用dremio 不能处理的问题(比如sql 兼容问题),同时基于外部查询的数据是不走反射的
所以在特定场景下我们可以直接跳过数据反射查询原始数据
参考资料
https://docs.dremio.com/data-sources/external-queries/
标签:dremio,mdm,外部,查询,external,query 来源: https://www.cnblogs.com/rongfengliang/p/15091496.html