我有原始的SQL查询。我想把它转换成密码查询。
select name, count(country) from public.mytable where country in ('Nigeria', 'Sweden') group by country, name
我用密码写了查询,但是没有返回任何东西。但是原始的SQL查询返回了结果。
match (m:mytable) where m.country=all[c in ['Nigeria', 'Sweden'] where c in m] return m.country, m.name
任何帮助都感激不尽。
1条答案
按热度按时间mf98qq941#
在Cypher中,聚合是隐式的,通常使用
WITH
子句或在RETURN
语句中完成。