1

我希望此查询返回查询 #2 未返回的所有 ID 和相关电子邮件:

select my_table.id, my_table.email
from my_table join another_table on my_table.id=another_table.mytable_id
where my_table.id not in (select array (select my_table.id 
             from my_table join yetanother_table 
             on my_table.id = yetanother_table.mytable_id 
             where yetanother_table.time1 between '2015-01-26T08:00:00.000Z'
                                              and '2015-02-02T07:59:59.999Z'
             group by my_table.id))

当我运行它时,在第 3 行的选择附近出现以下错误:

operator does not exist: integer = integer[]   
You might need to add explicit type casts.

我尝试将数组转换为整数并得到了这个:

cannot cast type integer[] to integer

我还尝试将两者my_table.id和数组都转换为varchar. 这消除了错误,但返回的行数比我预期的要少!

第一个问题:为什么我不能integer[]投到integer?数组的默认数据类型是什么?有没有比将 my_table.id 和数组都转换为更简洁的方法来消除“操作员不存在”错误varchar

并跟进:现在我想知道为什么我的行数太少。它看起来像我写它的方式会返回我想要的吗?即查询#2 未返回的所有ID?

另一个约束 - 我需要用一个语句来做所有事情。

4

2 回答 2

1

删除错位的数组构造函数后,您将获得一个有效的查询。and结构需要一个简单
的子查询来产生匹配类型 -而不是数组。INNOT IN

但是,查询仍然是扭曲且低效的。改用:

select m.id, m.email
from   my_table m
join   another_table a on a.mytable_id = m.id
left   join yetanother_table y on y.mytable_id = m.id
                              and y.time1 >= '2015-01-26 08:00'
                              and y.time1 <  '2015-02-02 08:00'
where  y.mytable_id IS NULL;

更多信息:

于 2015-02-03T19:29:24.203 回答
0

你需要摆脱select array. IN运算符正在查找单列查询结果,而不是数组。

于 2015-02-03T18:29:39.957 回答