Writing a SQL database from scratch in Go: 1. SELECT, INSERT, CREATE and a REPL

from blog Notes on software development, | ↗ original
Next in database basics: 2. binary expressions and WHERE filters 3. indexes 4. a database/sql driver In this series we'll write a rudimentary database from scratch in Go. Project source code is available on Github. In this first post we'll build enough of a parser to run some simple CREATE, INSERT, and SELECT queries. Then we'll...