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
AS
SELECT
Right now for nested SELECT queries, the rename AS is required in the query. For example,
SELECT price FROM (SELECT price FROM home_sales) AS T;
The following query will not work:
SELECT price FROM (SELECT price FROM home_sales);
We'd like to add the support for nested SELECT queries without AS to simplify the queries that user wrote.
No response
The text was updated successfully, but these errors were encountered:
https://www.postgresql.org/docs/7.3/queries-table-expressions.html#QUERIES-SUBQUERIES - PostgreSQL has a similar behavior. We can skip it.
I can make the AS keyword optional, but it makes it easier if we specify the alias_name.
alias_name
Sorry, something went wrong.
Sounds good. Let's keep it consistent with PostgreSQL.
gaurav274
No branches or pull requests
Search before asking
Description
Right now for nested SELECT queries, the rename
AS
is required in the query. For example,The following query will not work:
We'd like to add the support for nested SELECT queries without AS to simplify the queries that user wrote.
Use case
No response
Are you willing to submit a PR?
The text was updated successfully, but these errors were encountered: