码迷,mamicode.com
首页 > 其他好文 > 详细

2014/11/23 条件查询

时间:2014-11-23 17:14:11      阅读:167      评论:0      收藏:0      [点我收藏+]

标签: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

三、运算优先级

*  /  %  大于 +  -

运算符 大于 赋值

运算符 大于 比较 大于 逻辑

2014/11/23 条件查询

标签:style   color   sp   strong   on   2014   bs   sql   nbsp   

原文地址:http://www.cnblogs.com/jintuo/p/4116626.html

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