ms705 / nom-sql

Rust SQL parser written using nom
MIT License
232 stars 41 forks source link

Support Calculated ORDER BY/GROUP BY clauses #73

Open soulstompp opened 2 years ago

soulstompp commented 2 years ago

Both ORDER BY AND GROUP BY can have a positional in place of a column name (the positional and column names can be used in the same list) and any conditional expression. Ideally, the parser would able to handle these situations.