码迷,mamicode.com
首页 > 数据库 > 详细

sqlite 字符串拼接

时间:2017-11-08 14:49:03      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:sqlite   equal   not   ica   amp   数字   logical   glob   gic   

select path || ‘%‘  from t_category where depth = 0 and type = 0

用‘||‘拼接字符串

比如path是/1001/的话 那结果就是/1001/%

 

数字相加

SELECT ‘A‘+‘B‘  结果为0

SELECT "A"+"1"  结果为1

SELECT "A"+1   结果为1

SELECT 2+1  结果为3

=在“+”运算中,SQLite将字符串非数字串都当作0处理了

 

||  String Concatenation
Arithmetic Multiply
Arithmetic Divide
Arithmetic Modulus
Arithmetic Add
–  Arithmetic Subtract
<<  Bitwise Right shift
>>  Bitwise Left shift
Logical And
Logical Or
Relational Less than
<=  Relational Less than or equal to
Relational Greater than
>=  Relational Greater than or equal to
Relational Equal to
==  Relational Equal to
<>  Relational Not equal to
!=  Relational Not equal to
IN  Logical In
AND  Logical And
OR  Logical Or
LIKE  Relational String matching
GLOB  Relational Filename matching

sqlite 字符串拼接

标签:sqlite   equal   not   ica   amp   数字   logical   glob   gic   

原文地址:http://www.cnblogs.com/gsk99/p/7803566.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!