sqlfun/README
2016-07-29 16:16:07 -04:00

18 lines
375 B
Plaintext

An SQL parser, generated from Bison (Yacc) and Flex (Lex).
Original version - most of the work - comes from John Levine's
Flex & Bison book published by O'Reilley.
Example usage:
$ echo "SELECT a.name,b.address FROM people ORDER BY name;" | ./sql
Standard GNU autotools building instructions:
$ ./autogen.sh
$ ./configure
$ make && make check
$ sudo make install