You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@age.apache.org by "mahinash26 (via GitHub)" <gi...@apache.org> on 2023/05/05 16:18:45 UTC

[GitHub] [age] mahinash26 commented on issue #820: Are multiple cypher calls possible within the same FROM clause?

mahinash26 commented on issue #820:
URL: https://github.com/apache/age/issues/820#issuecomment-1536486308

   It looks like the error message you received is due to the fact that you specified the table name "cypher" more than once in your FROM clause. To fix the issue, you could try aliasing the table names, like so:
   
   
   SELECT * 
   FROM cypher('query1') AS result1, cypher('query2') AS result2;
   
   This should allow you to specify multiple cypher calls in the same FROM clause without encountering the "table name specified more than once" error.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscribe@age.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org