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

https://github.com/awmleer/nanosql

A simple SQL Database implementation for "Database System Concepts" course.
https://github.com/awmleer/nanosql

database python python3

Last synced: about 1 year ago
JSON representation

A simple SQL Database implementation for "Database System Concepts" course.

Awesome Lists containing this project

README

          

# NanoSQL

![screenshot](./report/photos/screenshot.png)

### Dependencies

- [clint](https://github.com/kennethreitz/clint) 0.5.1
- python 3.5 or 3.6
- flask

### Sample SQLs

```sql
create table student (
sno char(8),
sname char(16) unique,
sage int,
sgender char (1),
primary key ( sno )
);
```

```sql
create index stunameidx on student ( sname );
```

```sql
insert into student values ('12345678','wy',22,'M');
```

See more test cases at: `test/sample.txt`