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

https://github.com/peymanslh/sql

Learn SQL by example
https://github.com/peymanslh/sql

mysql postgresql sql

Last synced: about 2 months ago
JSON representation

Learn SQL by example

Awesome Lists containing this project

README

          

# SQL by example

## Setup
Install extended version of hugo.
- Run development server: `hugo server`.
- Create a new post: `hugo new --kind post posts/.md`

## TODO
- [x] SELECT
- [x] WHERE
- [x] INSERT
- [x] UPDATE
- [x] DELETE
- [x] ORDER BY
- [x] GROUP BY
- [x] AND, OR, NOT
- [x] LIMIT
- [x] Comments
- [x] MIN, MAX
- [x] COUNT
- [x] SUM
- [x] AVG
- [x] AS (Alias)
- [x] LIKE
- [x] SELECT DISTINCT
- [x] IN
- [x] BETWEEN
- [ ] JOIN
- [ ] INNER JOIN
- [ ] LEFT JOIN
- [ ] RIGHT JOIN
- [ ] FULL JOIN
- [ ] CROSS JOIN
- [ ] UNION
- [ ] WITH
- [ ] HAVING
- [ ] EXISTS
- [ ] ROUND
- [ ] ANY
- [ ] ALL
- [ ] CASE
- [ ] NULL
- [ ] ALTER TABLE
- [ ] TRUNCATE
- [ ] SIMILAR TO https://www.postgresql.org/docs/16/functions-matching.html
- [ ] Operators

- [ ] Constraints
- [ ] Unique
- [ ] Primary key
- [ ] Index
- [ ] Default
- [ ] Auto increment
- [ ] Dates and times

## License
Licensed under the [MIT License](LICENSE)