MySQL条件语句

 

 

条件查询需要使用where语句,where必须放在from语句的后面

  可支持如下运算符:

运算符 说明如下
= 等于
<> 或 != 不等于
< 小于
<= 小于等于
> 大于
>= 大于等于
between...and... 两个值之间,等同于于 >= and <=)(左小右大,左闭右开)
is null 为null(is not null 不为空)
and 并且
or 或者
in 包含,相当于多个or(not in 不在某个范围)
not not 可以取非,主要用在is或in中
like like称为模糊查询,支持%或下环线匹配

MySQL条件语句

上一篇:sqlserver日志的备份与还原


下一篇:springBoot---jdbc整合