Ask HN: Which one is better for writing a SQL parser?
https://news.ycombinator.com/item?id=633568It seems that there are two choices: Lemon Parser Generator and YACC.
PostgreSQL uses YACC and SQLite uses Lemon.
My usages should be multi-thread, embedded parser for much simpler SQL syntax (a SQL subset).
Which one is better for this?