标签:style color sp strong on 2014 bs sql nbsp
一、条件查询:
select * from student where code>2 为单一条件查询。
可以用逻辑运算符 or 连接两个附加条件,即
select * from student where code>2 or name=‘小明‘。表示或者。
相对应的为 and。
二、SQL的各种运算符
运算符:+ - * / % %为取余数,如20%3=2,读音为“mó”
赋值运算符: =
比较运算符:> < <= >= != !=为不等于 =既是赋值又是比较
逻辑运算符:and or
三、运算优先级
* / % 大于 + -
运算符 大于 赋值
运算符 大于 比较 大于 逻辑
标签:style color sp strong on 2014 bs sql nbsp
原文地址:http://www.cnblogs.com/jintuo/p/4116626.html