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

where 条件查询

时间:2020-05-16 00:33:25      阅读:212      评论:0      收藏:0      [点我收藏+]

标签:必须   通配符   开头   模糊匹配   regex   查询   regexp   from   运算符   

比较运算符

    >     <     <=     >=     <>    !=

select   *    from   employee    where   sex=‘male‘;

select   *   from  employee  where   id>10;

select * from employee where salary between 10000 and 20000;

select * from employee where salary in (10000,20000);   单独的n个值

范围

  between  10000   and   20000;      10000到20000之间

  in  (10000,20000)    只有10000或者20000

模糊匹配

    like    

      %  通配符  表示任意长度的任意内容

      _   通配符   一个长度的任意内容

        select * from employee where emp_name like ‘程__‘;

      select   *   from   employee  where   emp_name like ‘j%‘;    

      select * from employee where emp_name like ‘%l%‘;     含有l

    regexp    必须是字符串

      select * from employee where emp_name regexp ‘^j‘;     以j开头的。

        ‘g$’   以g结尾的

逻辑运算

    not

        select   *  from  employee  where   salary   not   in  (1000,20000)  and  age =18;

        select    *   from   employee    where   sex=‘male‘  or   post=‘teacher‘;

    and

    or

    not

where 条件查询

标签:必须   通配符   开头   模糊匹配   regex   查询   regexp   from   运算符   

原文地址:https://www.cnblogs.com/ch2020/p/12898007.html

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