Skip to content

Commit c0e63a4

Browse files
committed
update readme
1 parent f309a46 commit c0e63a4

File tree

1 file changed

+29
-7
lines changed

1 file changed

+29
-7
lines changed

README.md

Lines changed: 29 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
`abstra-json-sql` is a Python library that allows you to **run SQL queries on JSON data**. It is designed to be simple and easy to use, while providing powerful features for querying and manipulating JSON data.
44

5+
## Installation
6+
7+
You can install `abstra-json-sql` using pip:
8+
9+
```sh
10+
pip install abstra-json-sql
11+
```
12+
513
## Usage
614

715
Assuming you have a directory structure like this:
@@ -21,10 +29,24 @@ abstra-json-sql "select * from users"
2129

2230
This will return all the users in the `users.json` file.
2331

24-
## Installation
25-
26-
You can install `abstra-json-sql` using pip:
27-
28-
```sh
29-
pip install abstra-json-sql
30-
```
32+
## Supported SQL Syntax
33+
34+
- [.] `SELECT`:
35+
- [x] `FROM`
36+
- [x] `WHERE`
37+
- [x] `GROUP BY`
38+
- [x] `HAVING`
39+
- [ ] `WINDOW`
40+
- [x] `ORDER BY`
41+
- [x] `LIMIT`
42+
- [x] `OFFSET`
43+
- [ ] `FETCH`
44+
- [ ] `FOR`
45+
46+
- [ ] `INSERT`
47+
- [ ] `UPDATE`
48+
- [ ] `DELETE`
49+
50+
- [ ] `CREATE`
51+
- [ ] `DROP`
52+
- [ ] `ALTER`

0 commit comments

Comments
 (0)