We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
From sql2cypher created by lukaseder: neo4j-contrib/sql2cypher#30
Various DML statements can be translated, including:
INSERT
INSERT .. VALUES
CREATE (n:Type { ... })
INSERT .. SELECT
MATCH .. CREATE
RETURNING
RETURN
ON DUPLICATE KEY UPDATE
ON CONFLICT
MERGE
UPDATE
DELETE
WHERE
USING
DELETE .. JOIN
ORDER BY .. LIMIT
The text was updated successfully, but these errors were encountered:
Added truncate in 1e45331.
truncate
Sorry, something went wrong.
No branches or pull requests
From sql2cypher created by lukaseder: neo4j-contrib/sql2cypher#30
Various DML statements can be translated, including:
INSERT
: https://neo4j.com/docs/cypher-manual/current/clauses/create/INSERT .. VALUES
:CREATE (n:Type { ... })
syntaxINSERT .. SELECT
:MATCH .. CREATE
syntaxRETURNING
(Firebird, MariaDB, Oracle, PostgreSQL specific syntax to return deleted rows):RETURN
?ON DUPLICATE KEY UPDATE
/ON CONFLICT
: Probably usingMERGE
?UPDATE
: https://neo4j.com/docs/cypher-manual/current/clauses/merge/DELETE
: https://neo4j.com/docs/cypher-manual/current/clauses/delete/WHERE
: Translates toWHERE
USING
(PostgreSQL specificDELETE .. JOIN
syntax): Translates to ordinary graph declarationsORDER BY .. LIMIT
(MySQL specific syntax to limit the number of rows to be deleted): Perhaps with a subquery?RETURNING
(Firebird, MariaDB, Oracle, PostgreSQL specific syntax to return deleted rows): Perhaps withRETURN
?The text was updated successfully, but these errors were encountered: