czesław
czesław

Reputation: 45

How to concat columns in Android sqlite

Can I concat two or more columns in Android sqlite ? eg select columna++ columnb as columnc from table

Upvotes: 4

Views: 6350

Answers (1)

Femi
Femi

Reputation: 64700

Try select columna || columnb as columnc from table.

Upvotes: 16

Related Questions