Computer Science, asked by Justin5923, 1 year ago

How to concat two columns in Android sqlite?

Answers

Answered by laxmipriyaojha2002
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