prestodb / presto

The official home of the Presto distributed SQL query engine for big data
http://prestodb.io
Apache License 2.0
15.96k stars 5.34k forks source link

by the way,how can i support alias names without quotes?cutom parser? #15596

Open ghfengg opened 3 years ago

rschlussel commented 3 years ago

Can you clarify your question? You don't need quotes to alias column names unless the name is a reserved key word.

e.g. you can do SELECT my_col as c1 FROM my_table