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
- Host: GitHub
- URL: https://github.com/roackb2/simple_db
- Owner: roackb2
- Created: 2024-01-07T09:56:30.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-01-20T10:46:00.000Z (over 2 years ago)
- Last Synced: 2025-06-21T03:38:37.737Z (12 months ago)
- Language: Go
- Size: 36.1 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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, ...)`