目录 排序Order by 通过节点属性排序节点 通过多节点属性排序节点 倒序排列节点 空值排序 Skip 跳过前三个 返回中间两个 Limit 返回第一部分 函数Functions 判断 All Any None Single Scalar函数 Length Type Id Coalesce Iterable函数 Nodes Relationships Extract 排序(Order by) 输出结果排序可以使用order by 子句.注意,不能使用节点或者关系排序,仅仅只针对其属性有效.…
算术运算符 逻辑运算符 比较运算符 聚合函数 算术运算符(+ - * / ) select score*2 as 成绩翻倍 from class_A update class_A set score=score+20 where score<70 update class_A set score=score-20 where score>70 update class_A set score=score/2 where score>70 逻辑运算符(and/or/between A an…