Is it possible to combine two or more columns in Android sqlite? egselect columna++ columnb as columnc from table
select columna++ columnb as columnc from table
Give it a try select columna || columnb as columnc from table.
select columna || columnb as columnc from table