TQL has three types for primitive string, number, boolean and time.
string
Define constant strings as like traditional programming languages with quotation marks, single(’), double (") and backtick(`).
The backtick’ed string is useful when you need to define a string in multiple lines including quotation marks inside such as long SQL statement.
Example) Escaping single quote with backslash(\')
1
2
SQL('select * from example where name=\'temperature\' limit 10')CSV()
Example) Double quote string
1
2
SQL("select * from example where name='temperature' limit 10")CSV()
Example) Use multi-lines sql statement without escaping by backtick(`)
1
2
3
4
5
SQL(`select *
from example
where name='temperature'
limit 10`)CSV()
There is a user convenient way specifying JSON string in a TQL script by using double braces.
It doesn’t require quotation marks escaping.
The two string expressions used below are equivalent.
Time type values can be created by calling time(), parseTime() functions, or retrieved from datetime column of a SQL query result.
timeZone
TimeZone type values can be created by calling tz() function.
ex) tz('UTC'), tz('Local'), tz('Asia/Seoul')
list
A list is an array of other values, it can be created by calling list() function.
ex) list(1, 2, 3)
dictionary
A dictionary is a set of (string) name and value pairs, created by calling dict() function.
ex) dict("name", "pi", "value", 3.14)
Statements
Every statement in TQL should be a function call except the literal constants of string, number and boolean.
// A comment line starts with '//'
// Each statement should start from first column.
SQL_SELECT('time','value',from('example','temperature'),limit(10))CSV()
SRC and SINK
Every .tql script should start with one source statement which can generates a record or records.
For example, SQL(), SQL_SELECT() and SCRIPT() that generates records with yield(), yieldKey() can be a source.
And the last statement should be a sink statement that encode the result or write into the database.
For example, APPEND(), INSERT() and all CHART() functions can be a sink.
MAP functions
There may be zero or more map functions between source and sink statements.
The names of all map functions are with capital letters, in contrast lower case camel notation functions are used as arguments of the other map functions.
When external applications call a *.tql script via HTTP it can provide arguments as query parameters.
The function param() is purposed to retrieve the values from query parameters in TQL script.
If the script below saved as ‘hello2.tql’, applications can call this script by HTTP GET method with http://127.0.0.1:5654/db/tql/hello2.tql?name=temperature&count=10.
Then param('name') returns “temperature”, param('count') is 10, as expected.
The modulo operator (also known as the modulus operator), denoted by %, is an arithmetic operator.
The modulo division operator produces the remainder of an integer division which is also called the modulus of the operation.
1
2
3
FAKE(arrange(1,10,1))FILTER(value(0)%3==0)CSV()
3
6
9
Concatenation
If operator + takes strings as its operands, it returns concatenated string.
The ternary operator ? : is kind of similar to the if-else statements in other programming languages
as it follows the same algorithm as of if-else statement
?? operator takes left and right operand. if left operand is defined it returns value of it, if left operand is not defined it returns right operand instead.
The example below shows the common use case of the ?? operator. If caller did not provide query param variables, the right side operand will be taken as a default value.