|
|
|
|
|
by 3eb7988a1663
232 days ago
|
|
I like PRQL[0] - fixes stupid warts about SQL. A few top line items: - trailing commas not an error
- queries can be read/written in linear order, starting with from, and ending on select
- trivial intermediary keywords (eg you define month_total, and then can re-use month_total in a following calculation, no need to duplicate the calculation logic)
- no need for a separate `having` keyword when `where` can just be a filter on a group
There is nothing too ground-breaking about it. Just streamlines some logic into a more holistic experience.[0] https://prql-lang.org/ |
|
Postgres already has this.