You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks @alancai98, I can use Order By now. I also want to add alias support for Order By and Group By. Currently, following queries are not working because of missing bindings.
SELECT a as b FROM table ORDER BY b
SELECT a as b FROM table GROUP BY b
Do you mind if I open a new PR to support for aliases, if can implement? or Do I need to open an issue for this?
So, taking a look @ this again. I haven't done a ton of research, but I saw this tid-bit on StackOverflow making me think that GROUP BY will never support projection aliases.
Anyways, I made some changes to ORDER BY, and I'll be posting a PR soon.
Thanks @alancai98, I can use
Order By
now. I also want to add alias support forOrder By
andGroup By
. Currently, following queries are not working because of missing bindings.SELECT a as b FROM table ORDER BY b
SELECT a as b FROM table GROUP BY b
Do you mind if I open a new PR to support for aliases, if can implement? or Do I need to open an issue for this?
Originally posted by @onurkuruu in #554 (comment)
The text was updated successfully, but these errors were encountered: