This is an extension of this question: SQLite problem selecting two columns as one
How would I combine the two columns if there is a space in the column name?
This works:
SELECT (column1 || " " || column2) AS expr1 FROM your_table;
This does not:
SELECT (column 1 || " " || column 2) AS expr1 FROM your_table;
Try this:
OR this
OR this
Per the SQLIte documentation, you use single quote for strings, and double for identifiers, but you have the other options for compatibility