我有三张桌子:
文字:行中的文字
trigram:所有文字行的trigram
text_trigram:文本行包含的三字母组,中间表
当我执行此命令时:
select count(coalesce(text_id,0)), text_id
from text_trigram
where text_id in (1, 2, 3)
and trigram_id = 1
group by text_id;
结果出来了,却没有null
我想要的结果0
:
count|text_id
1 1
1 2
这是我除了拥有的东西:
count|text_id
1 1
1 2
0 3
此外,我想执行以下操作:
select count(coalesce(text_id,0)), text_id
from text_trigram
where text_id in (1, 2, 3)
and trigram_id in (1, 2, 3)
group by text_id;
count|text_id|trigram_id
1 1 1
1 1 2
0 1 3
1 2 1
1 2 2
1 2 3
0 3 1
有可能的?还是使用in
运算符是错误的?
我认为这里的困惑是您假设的值为null text_id=3
,但实际上 没有匹配的行 。考虑以下简化版本:
select *
from text_trigram
where text_id in (3)
如果没有带有的条目,则不会返回任何行text_id=3
。它不会伪造一行带有一串空值的行。
为了即使没有匹配的数据也强制存在一行,您可以创建一个包含这些ID的表表达式,例如
select * from
(
values (1), (2), (3)
) as required_ids ( text_id );
然后是LEFT JOIN
您的数据,因此您可以NULL
找到没有匹配数据的地方:
select *
from
(
values (1), (2), (3)
) as required_ids ( text_id )
left join text_trigram
on text_trigram.text_id = required_ids.text_id;
要进行第一个查询,请注意两件事:
count
忽略空值,因此count(text_trigram.text_id)
将仅对在text_trigram
表中找到匹配项的行进行计数任何额外条件都需要放在的on
子句中left join
,以便它们从中消除行text_trigram
,而不是整个查询中的行
select count(text_trigram.text_id), required_ids.text_id
from
(
values (1), (2), (3)
) as required_ids ( text_id )
left join text_trigram
on text_trigram.text_id = required_ids.text_id
and text_trigram.trigram_id = 1
group by text_id
order by text_id;
此更改为每个排列text_id
并trigram_id
只想涉及额外的表表达式和CROSS JOIN
:
select required_text_ids.text_id, required_trigram_ids.trigram_id, count(text_trigram.text_id)
from
(
values (1), (2), (3)
) as required_text_ids( text_id )
cross join
(
values (1), (2), (3)
) as required_trigram_ids( trigram_id )
left join text_trigram
on text_trigram.text_id = required_text_ids.text_id
and text_trigram.trigram_id = required_trigram_ids.trigram_id
group by required_text_ids.text_id, required_trigram_ids.trigram_id
order by required_text_ids.text_id, required_trigram_ids.trigram_id;
我有如下疑问, 我通过如下传递值来调用服务方法。 但它回来了。。。[] 帮助我为什么我没有得到值,而是得到了空列表。 附言:我检查了日志,它的语句是创建的,没有任何问题
问题内容: 我正在尝试在Dropwizard上使用MYSQL JDBI进行IN查询(我认为不相关)。 如这里的建议,我还用 但是,当我启动应用程序时,出现以下错误: 有谁对解决这个问题有个好主意? 问题答案: 有两种方法可以实现它。 1 。使用 该注释期望StringTemplate中具有SQL语句的组文件 说我有这个文件PersonExternalizedSqlDAO 由于我们正在使用,因此必须
问题内容: 您能帮我如何将以下代码转换为使用条件生成器的“ in”运算符吗?我需要使用“ in”使用用户名列表/数组进行过滤。 我还尝试使用JPA CriteriaBuilder-“ in”方法进行搜索,但是找不到很好的结果。 因此,如果您能给我该主题的参考URL,我也将不胜感激。谢谢。 这是我的代码: 内部查询字符串将转换为以下内容,因此我无法获得两个用户创建的记录,因为它使用的是“ AND”。
问题内容: 当测试数组中是否存在“ 0”时,即使数组似乎不包含“ 0”,为什么Javascript中的“ in”运算符也返回true? 例如,这返回true,并且很有意义: 这返回false,并且很有意义: 但是,这返回true,我不明白为什么: 问题答案: 它引用索引或键,而不是值。 并且是该阵列的有效指标。还有一些有效的键,包括和。尝试。这将是错误的(因为JavaScript数组的索引为0)。
我想要的是Hibernate生成1条语句删除所有子级的方法,而不是每个子级1条语句。 如果实体a和B之间存在关系,其中a是父对象,B可以是多个子对象。如果我在实体关系上使用注释,如OrphanRemoving或OnCascade delete,那么当我删除父对象时,自动生成的sql会显示 我想让Hibernate做的是生成SQL 是否有一个注释或设置我可以用来轻松做到这一点? 我觉得我不是第一个遇
问题内容: 我正在寻找一种使用数组中的“ IN”子句查询postgres jsonb字段的方法。 假设我有一张桌子 我需要选择test_content数组中的label可能为或的行。 我试过了 但是当我想用包含扩展查询时,或者变得复杂… 我需要的是 jsonb运算符可以吗? 问题答案: 简短答案 您可以在横向联接中使用该函数,并在子句中的复杂表达式中使用其结果: 不同 当在单个行中的多个数组元素中