I just saw a sqlite query and I cannot find what is it mean on the Internet.
SELECT _id," +
"NULL AS data1," +
"NULL AS data2," +
"artist_key||' '||album_key AS match from ....
^^^^^^^
Are there anyone know what is ||’ ‘|| mean?
||is the string concatenation operator. From the documenation:So in your case, the column
matchin the result will contain theartist_keycolumn joined with thealbum_keycolumn, with a space in-between.