harelba/q

SELECT CONCAT("A","1",'/')

avilella opened this issue · 1 comments

Is it possible to do CONCAT with q? E.g.

SELECT CONCAT("A","/","1")

If not, could it be implemented?

q accepts sqlite3 syntax constructs. Concatenating using sqlite3 is done by using "||":

$ q 'select "A"||"/"||"1"'
A/1
$