An open API service indexing awesome lists of open source software.

https://github.com/roackb2/simple_db

Simple database implemented in Go
https://github.com/roackb2/simple_db

Last synced: 11 months ago
JSON representation

Simple database implemented in Go

Awesome Lists containing this project

README

          

# Simple Database

A project to practice implementing a simple database, starting with the tutorial [Let's Build a Simple Database](https://cstack.github.io/db_tutorial/), and knowledge from the book [Database Management System](https://xuanhien.files.wordpress.com/2011/04/database-management-systems-raghu-ramakrishnan.pdf). Large portion of the code is generated by ChatGPT and Copilot.

## Progress

Components implemented:

1. SQL Parser that supports
a. Insert: In the format of `INSERT INTO tablename (col1, col2, ..) VALUES (val1, val2, ...)`