Live data from Hacker News

SQLite Release 3.25.0 adds support for window functions

sqlite.org

1–10 of 116 posts

Re: SQLite Release 3.25.0 adds support for window functions

#5
https://www.windowfunctions.com is a good introduction to window functions.

Besides that, the comprehensive testing and evaluation of SQLite never ceases to amaze me. I'm usually hesitant to call software development "engineering", but SQLite is definitely well-engineered.

Re: SQLite Release 3.25.0 adds support for window functions

#7
post #2

Not sure if SQLite is still a 'lite' database

I've just built the snapshot. The binary is still less than 2MB. And it works: sqlite> with t(x) as (values (1), (2)) select sum(x) over (order by x) from t; 1 3

Insightful. Thanks!

Re: SQLite Release 3.25.0 adds support for window functions

#9
post #8

SQLite guys, please add FDW support ala Postgres and easy foreign function support for Python and R, and you’ll corner most of analytics and data science.

I’d argue what they would need for that is tighter integration with Pandas (Python) and data.table (R) but that would be nice

Clever support for multilevel indexes would be top of my wishlist

Re: SQLite Release 3.25.0 adds support for window functions

#10
post #2

Not sure if SQLite is still a 'lite' database

I've just built the snapshot. The binary is still less than 2MB. And it works: sqlite> with t(x) as (values (1), (2)) select sum(x) over (order by x) from t; 1 3

I just checked a stripped copy of postgresql-10 built with all options on and it is 7MB. That could be reduced a little by leaving out language support and ssl support etc.
Post reply on HN