Basic table with empname and empdpt.
In a Sql Server table, I can do Select empname + ' ' + empdpt as expr1
no problem.
Can't do the same using Sqlite!!
When I try to combine two columns [with data], I get back a 0.
I've tried in sqliteman and sqliteadmin as well as Server Explorer in VS.
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
回答1:
Try using the following:
SELECT ("test" || " " || "test2") AS expr1 ;
Update
If these are columns you can do something similar: SELECT (column1 || " " || column2) AS expr1 FROM your_table;
回答2:
Select empname || " " || empdpt as expr1
The sqllite concat is the same as PostGreSQL ( || ) and not MYSQL or MSSQL 'CONCAT'
回答3:
for those who are trying to use the (working) solution of @merkuru
SELECT (column1 || " " || column2) AS expr1 FROM your_table;
in eclipse or another editor:
you have to cancel the " with \
something like:
SELECT (column1 || \" \" || column2) AS expr1 FROM your_table;
that's works perfect