Debasish Halder
Debasish Halder

Reputation: 3

Can we write SQL query instead of CQL?

I am using JDBC driver (org.neo4j.jdbc.bolt.BoltDriver) to connect to neo4j (jdbc link url : neo4j-jdbc-driver-link) . Could see we need to write SQL while executing query.

Can we write a SQL query instead of CQL like SELECT p.* FROM products as p;?

Upvotes: 0

Views: 39

Answers (1)

Luanne
Luanne

Reputation: 19373

No, it accepts only Cypher. There is no concept of tables in Neo4j. The docs are at https://neo4j-contrib.github.io/neo4j-jdbc/

Upvotes: 0

Related Questions