Using Neo4J 2.1.6 with Cypher.
I was wondering if it's possible to "alias" a query result column with a string containing spaces?
Following code generates error:
error with "..."
MATCH (a)
RETURN a.name AS "My Alias Column Name";
error without ...
MATCH a
RETURN a.name AS My Alias Column Name;
Spaces are possible, you can alias it using the backticks as follows:
MATCH (a)
RETURN a.age AS `My Alias Age Column Name`;
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With