MySQL(六)條件查詢

2021-10-02 08:22:44 字數 1319 閱讀 5677

語法:

select 

查詢列表

from

表名where

篩選條件;

分類:

一、按條件表示式篩選

條件運算子:>     <     =     !=    <>     >=    <=

二、按邏輯表示式篩選

邏輯運算子:

作用:用於連線條件表示式

&&  ||  !

and  or  not

&&和and:兩個條件都為true,結果為true,反之為false

||或or: 只要有乙個條件為true,結果為true,反之為false

!或not: 如果連線的條件本身為false,結果為true,反之為false

一、按條件表示式篩選

案例1:查詢工資》12000的員工資訊

select

* from

employees

where

salary>12000;

案例2:查詢部門編號不等於90號的員工名和部門編號

select last_name,department_id

from employees

where

department_id!=90;

最好使用第二種

select last_name,department_id

from employees

where

department_id<

>90;

二、按邏輯表示式篩選

案例1:查詢工資z在10000到20000之間的員工名、工資以及獎金

select

last_name,

salary,

commission_pct

from

employees

where

salary>=10000 and salary<=20000;

案例2:查詢部門編號不是在90到110之間,或者工資高於15000的員工資訊

select

*from

employees

where

not(department_id>=90 and department_id<=110) or salary>15000;

Shell指令碼(六) 條件判斷

1 基本語法 condition 注意 condition 前後要有空格 注意 條件非空即為true,atguigu 返回true,返回false。2.常用判斷條件 1 兩個整數之間比較 字串比較 lt 小於 less than le 小於等於 less equal eq 等於 equal gt 大...

02條件查詢 MySQL

條件查詢 語法 select 查詢列表 from 表明where 篩選條件 分類 一 按條件表示式刪選 條件運演算法 和 一樣 二 按邏輯表示式篩選 邏輯運算子 and or not 三 模糊查詢 萬用字元 代表任意多個字元,包括0個字元 代表乙個字元 注意 和 代表 和 like between ...

MySQL總結 02 條件查詢

語法 select 查詢列表 from 表名where 篩選條件 分類 一 按條件表示式篩選簡單條件運算子 案例1 查詢工資 12000的員工資訊 select from employees where salary 12000 案例2 查詢部門編號不等於90號的員工名和部門編號 select la...