Devlive 开源社区 本次搜索耗时 0.597 秒,为您找到 160 个相关结果.
  • RETURN

    364 2024-06-24 《Apache AGE 0.6.0》
    Return nodes Return edges Return property Return all elements Variable with uncommon characters Aliasing a field Optional properties Other expressions Unique results In t...
  • Cypher in SQL expressions

    363 2024-06-24 《Apache AGE 0.6.0》
    Using Cypher with ‘=’ Working with Postgres’s IN Clause Working with the Postgres EXISTS Clause Querying Multiple Graphs Cypher cannot be used in an expression— the query must...
  • DELETE

    359 2024-06-24 《Apache AGE 0.6.0》
    Terminal DELETE clauses Introduction Delete isolated vertices Delete all vertices and edges associated with them Delete edges only Return a deleted vertex The DELETE clause...
  • ORDER BY

    353 2024-06-24 《Apache AGE 0.6.0》
    Introduction Order nodes by property Order nodes by multiple properties Order nodes in descending order Ordering null ORDER BY is a sub-clause following WITH . ORDER BY spec...
  • PostgreSQL Prerequisite

    The Ranger database user in Amazon RDS PostgreSQL Server should be created before installing Ranger and should be granted an existing role which must have the role CREATEDB. Usi...
  • List Functions

    344 2024-06-24 《Apache AGE 0.6.0》
    Data Setup keys range labels nodes relationships toBooleanList Data Setup SELECT * from cypher ( 'graph_name' , $$ CREATE ( A : Person { name : 'Alice' , age ...
  • CREATE

    343 2024-06-24 《Apache AGE 0.6.0》
    Terminal CREATE clauses Create single vertex Create multiple vertices Create a vertex with a label Create a vertex with labels and properties Return created node Create an ed...
  • SQL In Cypher

    338 2024-06-24 《Apache AGE 0.6.0》
    Create Function Query AGE does not support SQL being directly written in Cypher. However with user defined functions you can write SQL queries and call them in a cypher command...
  • Using Cypher in a CTE Expression

    335 2024-06-24 《Apache AGE 0.6.0》
    There are no restrictions to using Cypher with CTEs (Common Table Expressions ). Query: WITH graph_query as ( SELECT * FROM cypher ( 'graph_name' , $$ ...
  • Using Cypher in a Join expression

    322 2024-06-24 《Apache AGE 0.6.0》
    A Cypher query can be part of a JOIN clause. Developers Note Cypher queries using the CREATE , SET , REMOVE clauses cannot be used in sql queries with JOINs , as...