https://github.com/tarsislimadev/clead
SQL at files
https://github.com/tarsislimadev/clead
database docker
Last synced: 2 months ago
JSON representation
SQL at files
- Host: GitHub
- URL: https://github.com/tarsislimadev/clead
- Owner: tarsislimadev
- Created: 2022-08-11T20:52:04.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-09-08T12:18:32.000Z (almost 4 years ago)
- Last Synced: 2025-03-02T22:44:03.520Z (over 1 year ago)
- Topics: database, docker
- Language: JavaScript
- Homepage:
- Size: 6.84 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Clead DB
SQL for files
```sql
> select id, name, age from people;
returning `nothing to see`
```
```sql
> insert into people (name, age) values ('Janaina', '23');
inserting 1 object
> select * from people;
returning 1 object
```