Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mandel59/erq
Erq - Easy Relational Query Language
https://github.com/mandel59/erq
Last synced: 17 days ago
JSON representation
Erq - Easy Relational Query Language
- Host: GitHub
- URL: https://github.com/mandel59/erq
- Owner: mandel59
- License: mit
- Created: 2022-07-17T04:50:10.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-05-28T14:33:06.000Z (6 months ago)
- Last Synced: 2024-05-29T02:25:11.036Z (6 months ago)
- Language: JavaScript
- Homepage:
- Size: 3.57 MB
- Stars: 10
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Erq - Easy Relational Query Language
## Introduction
Erq is an alternative query language for relational databases. It is designed to be easy to learn and use, while being as expressive and powerful as SQL.
I originally used SQLite to analyze my own kanji database. However, the verbose and cumbersome syntax of SQL prevented me from doing ad hoc analysis quickly. So I created Erq, which simplifies the syntax of SQL.
## Usage
Erq CLI works like SQLite CLI. You can use it to query SQLite databases.
Basically, you can use Erq CLI like this:
```shell
erq your_database.db your_output.txt
```Or you can use it interactively:
```shell
erq your_database.db
```## Syntax Comparison with SQL
See [Syntax Comparison with SQL](./doc/syntax-comparison.md).