在 Talend Open Studio for Data Quality 中,用户定义的指标,我们可以编写一个涉及 2 个表的 sql 查询吗?
这是场景,我有 2 个表:
- dbo.test,具有列部门。
- dbo.role,具有列部门。
以下查询用于从 dbo.test 中提取那些记录,其部门值不在 dbo.role 中。
Use [BigData]select dept from dbo.test
where dept not in (Select dept from dbo.role).
在执行时,它给出了以下错误:
An exception stack trace is not available.
我该如何解决这个问题以及编写此查询的正确方法是什么?