如何获得两列或一些算术的最大值或最小值?
可以在MYSQL中完成。
我不想要MAX和MIN功能。我想要相对最大和最小的不同值。
我目前正在处理案例?还有更好的选择吗?
答案 0 :(得分:0)
您可以对集合UNWIND
功能的集合使用MAX
:
UNWIND [1,2,3] AS x
RETURN max(x)
答案 1 :(得分:0)
order by
不起作用?
MATCH (n)
WITH n, Id(n) as param //now pick up 1 node
ORDER BY param DESC //or ASC
LIMIT 1
MATCH n--x //now continue with querying with the 1 picked node
RETURN n, x