/sql

A little practice in C data structures. Create a simple in-memory SQL database

Primary LanguageYacc

dependencies

lex, yacc, gcc

(libbison-dev needed)

compiling

make all

run

./db init_files/simple_two_col.txt

SELECT * FROM apa;

| name | weight |
| "gorilla" | 400 |
| "gibbon" | 5 |

help found in the following places:

credits

SQL Parser

not created by me, found it here and just modified it slightly

https://github.com/ronakgadia/SQL-Parser