How to concat two columns in Android sqlite?
Answers
Answered by
0
Adding Text Columns Together
SQLite, PostgreSQL and Oracle. Use the concatenation operator || . SELECT <value or column> || <value or column> || <value or column> FROM <table>;
MS SQL. Use the concatenation operator + . ...
MySQL, Postgres and MS SQL. Use the CONCAT() function. ...
Cheat Sheets. SQL Basics.
Similar questions