學習MySQL第二天(條件查詢)
阿新 • • 發佈:2021-01-13
條件查詢
語法:
SELECT 查詢列表 FROM 表名 WHERE 篩選條件;
分類:
- 1.按條件表示式篩選
條件運算子:> < = != <> >= <=
- 2.按邏輯表示式篩選
邏輯運算子:&& || ! and or not
- 3.模糊查詢
like
between and
in
is null
1.按條件表示式篩選
例:查詢工資>12000的員工資訊
SELECT * from employees where salary>12000;
2.按邏輯表示式篩選
作用:用於連線條件表示式
例:查詢工資在10000到20000之間的員工名,工資,獎金
SELECT last_name 姓名,salary 工資,commission_pct 獎金 from employees where salary>=10000 && salary <=20000;