Question

I am working with web sql. I have built many tables and trying to get data from the database. Problem is that when is try to combine two columns it returns 0 in that column.

(t1.team_name+' '+t2.team_name) AS "Teams"

or

 CONCAT(t1.team_name,' ',t2.team_name) AS "Teams"

These do not work. Am i doing something wrong because separately they return the text.

Was it helpful?

Solution

In SQLite (which I belive Web SQL is based on) you can concatenate strings with ||so try this:

t1.team_name || ' ' || t2.team_name AS "Teams"
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top