penberg / limbo

Limbo is a work-in-progress, in-process OLTP database management system, compatible with SQLite.
MIT License
960 stars 53 forks source link

ORDER BY: support `ORDER BY <result_column_number>` #216

Closed jussisaurio closed 1 month ago

jussisaurio commented 1 month ago

e.g. SELECT age, first_name FROM users ORDER BY 1 LIMIT 1;

limbo (does not order):

> select age, first_name from users order by 1 limit 1;
94|Jamie

sqlite (orders by age desc):

sqlite> select age, first_name from users order by 1 limit 1;
1|Terri