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
Looks like you're not allowed to use aliases. This code fails
SELECT b.the_geom FROM {{myquery}} as b
And when you want to reference more than one cell with same columns and need to specify the table name, also fails
SELECT {{myquery2}}.cartodb_id {{myquery1}}.the_geom FROM {{myquery_1}} , {{myquery_2}} WHERE ...
The text was updated successfully, but these errors were encountered:
Wrapping the cell reference within parentheses doesnt even work:
SELECT b.the_geom FROM ({{myquery}}) b
Sorry, something went wrong.
Looks like a limitation in one of the core functions -> https://github.com/HVF/franchise/blob/master/src/db/generic.js#L98
Should we open a ticket on the master repo?
sure!
HVF#56
No branches or pull requests
Looks like you're not allowed to use aliases. This code fails
And when you want to reference more than one cell with same columns and need to specify the table name, also fails
The text was updated successfully, but these errors were encountered: