当前位置:数据库 > SQLite >>

SQLite中怎么将两个字段字符串合并连接为一个

在SQLite下我测试了
SELECT 'A'+'B'
结果为0
select "A"+"1" 结果为1
select "A"+1 结果为1
select 2+1 结果为3
 
 
感觉在“+”运算中,SQLite将字符串非数字串都当作0处理了
 
加号就是针对数字的,所以应该用|| 来拼接字符串的结果
 
select wid||word from table1;

摘自 禚 的iphone开发专栏
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,