RBQL is a technology which provides SQL-like language that supports SELECT and UPDATE queries with Python or JavaScript expressions.
RBQL is distributed with CLI apps, text editor plugins, Python and JS libraries and can work in web browsers.
- Use Python or JavaScript expressions inside SELECT, UPDATE, WHERE and ORDER BY statements
- Result set of any query immediately becomes a first-class table on it's own
- Supports input tables with inconsistent number of fields per record
- Output records appear in the same order as in input unless ORDER BY is provided
- Each record has a unique NR (line number) identifier
- Supports all main SQL keywords
- Supports aggregate functions and GROUP BY queries
- Provides some new useful query modes which traditional SQL engines do not have
- Supports both TOP and LIMIT keywords
- Supports user-defined functions (UDF)
- Works out of the box, no external dependencies
- RBQL doesn't support nested queries, but they can be emulated with consecutive queries
- Number of tables in all JOIN queries is always 2 (input table and join table), use consecutive queries to join 3 or more tables
- SELECT
- UPDATE
- WHERE
- ORDER BY ... [ DESC | ASC ]
- [ LEFT | INNER ] JOIN
- DISTINCT
- GROUP BY
- TOP N
- LIMIT N
All keywords have the same meaning as in SQL queries. You can check them online
| Variable Name | Variable Type | Variable Description |
|---|---|---|
| a1, a2,..., a{N} | string | Value of i-th column |
| b1, b2,..., b{N} | string | Value of i-th column in join table B |
| NR | integer | Line number (1-based) |
| NF | integer | Number of fields in line |
UPDATE query produces a new table where original values are replaced according to the UPDATE expression, so it can also be considered a special type of SELECT query. This prevents accidental data loss from poorly written queries.
UPDATE SET is synonym to UPDATE, because in RBQL there is no need to specify the source table.
RBQL supports the following aggregate functions, which can also be used with GROUP BY keyword:
COUNT(), ARRAY_AGG(), MIN(), MAX(), SUM(), AVG(), VARIANCE(), MEDIAN()
Aggregate functions inside Python (or JS) expressions are not supported. Although you can use expressions inside aggregate functions.
E.g. MAX(float(a1) / 1000) - valid; MAX(a1) / 1000 - invalid
Join table B can be referenced either by it's file path or by it's name - an arbitary string which user should provide before executing the JOIN query.
RBQL supports STRICT LEFT JOIN which is like LEFT JOIN, but generates an error if any key in left table "A" doesn't have exactly one matching key in the right table "B".
- JOIN statements must have the following form: <JOIN_KEYWORD> (/path/to/table.tsv | table_name ) ON ai == bj
SELECT EXCEPT can be used to select everything except specific columns. E.g. to select everything but columns 2 and 4, run: SELECT * EXCEPT a2, a4
Traditional SQL engines do not support this query mode.
RBQL supports DISTINCT COUNT keyword which is like DISTINCT, but adds a new column to the "distinct" result set: number of occurrences of the entry, similar to uniq -c unix command.
SELECT DISTINCT COUNT a1 is equivalent to SELECT a1, COUNT(a1) GROUP BY a1
UNNEST(list) takes a list/array as an argument and repeats the output record multiple times - one time for each value from the list argument.
Example: SELECT a1, UNNEST(a2.split(';'))
RBQL supports User Defined Functions
You can define custom functions and/or import libraries in two special files:
~/.rbql_init_source.py- for Python~/.rbql_init_source.js- for JavaScript
select top 100 a1, int(a2) * 10, len(a4) where a1 == "Buy" order by int(a2)select * order by random.random()- random sort, this is an equivalent of bash command sort -Rselect top 20 len(a1) / 10, a2 where a2 in ["car", "plane", "boat"]- use Python's "in" to emulate SQL's "in"select len(a1) / 10, a2 where a2 in ["car", "plane", "boat"] limit 20update set a3 = 'US' where a3.find('of America') != -1select * where NR <= 10- this is an equivalent of bash command "head -n 10", NR is 1-based')select a1, a4- this is an equivalent of bash command "cut -f 1,4"select * order by int(a2) desc- this is an equivalent of bash command "sort -k2,2 -r -n"select NR, *- enumerate lines, NR is 1-basedselect * where re.match(".*ab.*", a1) is not None- select entries where first column has "ab" patternselect a1, b1, b2 inner join ./countries.txt on a2 == b1 order by a1, a3- an example of join queryselect distinct count len(a1) where a2 != 'US'select MAX(a1), MIN(a1) where a2 != 'US' group by a2, a3
select top 100 a1, a2 * 10, a4.length where a1 == "Buy" order by parseInt(a2)select * order by Math.random()- random sort, this is an equivalent of bash command sort -Rselect top 20 a1.length / 10, a2 where ["car", "plane", "boat"].indexOf(a2) > -1select a1.length / 10, a2 where ["car", "plane", "boat"].indexOf(a2) > -1 limit 20update set a3 = 'US' where a3.indexOf('of America') != -1select * where NR <= 10- this is an equivalent of bash command "head -n 10", NR is 1-based')select a1, a4- this is an equivalent of bash command "cut -f 1,4"select * order by parseInt(a2) desc- this is an equivalent of bash command "sort -k2,2 -r -n"select NR, *- enumerate lines, NR is 1-basedselect a1, b1, b2 inner join ./countries.txt on a2 == b1 order by a1, a3- an example of join queryselect distinct count a1.length where a2 != 'US'select MAX(a1), MIN(a1) where a2 != 'US' group by a2, a3
RBQL parses SQL-like user query, creates a new python or javascript worker module, then imports and executes it.
Explanation of simplified Python version of RBQL algorithm by example.
- User enters the following query, which is stored as a string Q:
SELECT a3, int(a4) + 100, len(a2) WHERE a1 != 'SELL'
- RBQL replaces all
a{i}substrings in the query string Q witha[{i - 1}]substrings. The result is the following string:
Q = "SELECT a[2], int(a[3]) + 100, len(a[1]) WHERE a[0] != 'SELL'"
- RBQL searches for "SELECT" and "WHERE" keywords in the query string Q, throws the keywords away, and puts everything after these keywords into two variables S - select part and W - where part, so we will get:
S = "a[2], int(a[3]) + 100, len(a[1])"
W = "a[0] != 'SELL'"
- RBQL has static template script which looks like this:
for line in sys.stdin:
a = line.rstrip('\n').split('\t')
if %%%W_Expression%%%:
out_fields = [%%%S_Expression%%%]
print '\t'.join([str(v) for v in out_fields])
- RBQL replaces
%%%W_Expression%%%with W and%%%S_Expression%%%with S so we get the following script:
for line in sys.stdin:
a = line.rstrip('\n').split('\t')
if a[0] != 'SELL':
out_fields = [a[2], int(a[3]) + 100, len(a[1])]
print '\t'.join([str(v) for v in out_fields])
- RBQL runs the patched script against user's data file:
./tmp_script.py < data.tsv > result.tsv
Result set of the original query (SELECT a3, int(a4) + 100, len(a2) WHERE a1 != 'SELL') is in the "result.tsv" file.
Adding support of TOP/LIMIT keywords is trivial and to support "ORDER BY" we can introduce an intermediate array.
It should be: RBQL scripts have only 1000 - 2000 lines combined (depending on how you count them) and there are no external dependencies. There is no complex logic, even query parsing functions are very simple. If something goes wrong RBQL will show an error instead of producing incorrect output, also there are currently 5 different warning types.
- RBQL: Official Site RBQL is integrated with Rainbow CSV extensions in Vim, VSCode, Sublime Text editors.
- RBQL in npm:
$ npm install -g rbql - RBQL in PyPI:
$ pip install rbql