Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.
01-12-2023 12:46 AM
Invalid create index syntax, use `CREATE INDEX FOR ...` instead. (line 1, column 1 (offset: 0)) "CREATE INDEX ON:employee(p_id)"
Solved! Go to Solution.
01-12-2023 02:36 AM - edited 01-12-2023 02:39 AM
CREATE INDEX FOR (n:employee) ON (n:p_id)
you may want to name the index instead of it given a default name.
CREATE INDEX employee_p_id FOR (n:employee) ON (n:p_id)
01-12-2023 02:36 AM - edited 01-12-2023 02:39 AM
CREATE INDEX FOR (n:employee) ON (n:p_id)
you may want to name the index instead of it given a default name.
CREATE INDEX employee_p_id FOR (n:employee) ON (n:p_id)
All the sessions of the conference are now available online