Live data from Hacker News

SQLite now supports recursive CTEs

sqlite.org

1–10 of 25 posts

Re: SQLite now supports recursive CTEs

#8
post #7

It is strange that SQLite will get this before MySQL. But good job to the SQLite team!

When it comes to SQL standard support my bet is always on SQLite before MySQL (except for any multi user/role stuff, of course).

The other exception I'd note is type-related stuff, since, while MySQL isn't always in line with the standard there, SQLite has deliberately chosen a different course than teh standard when it comes to types.

Re: SQLite now supports recursive CTEs

#10
This is awesome. I've used WITH RECURSIVE in postgres to do graph traversals (even replaced neo4j with postgres), and now this is also available with sqlite. I can see running tests in development becoming a whole lot easier.
Post reply on HN