您好,登錄后才能下訂單哦!
1.使用where子句
2.where子句操作符
2.1 檢查單個值
2.2 不匹配檢查
2.3 范圍值檢查
2.4 空值檢查
例如:查找年齡等于22歲的行
MariaDB [test]> select age
-> from user
-> where age=22;
+------+
| age |
+------+
| 22 |
+------+
1 row in set (0.00 sec)
提示:在同時使用order by 和 where子句時,應該讓order by位于where之后。
2.1 檢查單個值
MariaDB [test]> select id,age,province
-> from user
-> where province = '北京';
+----+------+----------+
| id | age | province |
+----+------+----------+
| 1 | 22 | 北京 |
| 4 | 14 | 北京 |
| 7 | 45 | 北京 |
| 11 | 29 | 北京 |
| 13 | 24 | 北京 |
+----+------+----------+
5 rows in set (0.01 sec)
2.2 不匹配檢查
MariaDB [test]> select id, age, province
-> from user
-> where age <> 22;
+----+------+----------+
| id | age | province |
+----+------+----------+
| 2 | 25 | 廣東 |
| 3 | 56 | 天津 |
| 4 | 14 | 北京 |
| 5 | 36 | 廣東 |
| 6 | 68 | 湖南 |
| 7 | 45 | 北京 |
| 8 | 17 | 河北 |
| 9 | 33 | 天津 |
| 10 | 27 | 湖南 |
| 11 | 29 | 北京 |
| 12 | 70 | 廣東 |
| 13 | 24 | 北京 |
+----+------+----------+
12 rows in set (0.00 sec)
2.3 范圍值檢查
MariaDB [test]> select id,age,province
-> from user
-> where age between 25 and 33;
+----+------+----------+
| id | age | province |
+----+------+----------+
| 2 | 25 | 廣東 |
| 9 | 33 | 天津 |
| 10 | 27 | 湖南 |
| 11 | 29 | 北京 |
+----+------+----------+
4 rows in set (0.00 sec)
2.4 空值檢查
提示:空值NULL(no value)與0、空字符串或空格不同。
MariaDB [test]> select id,age,province
-> from user
-> where age IS NULL;
Empty set (0.00 sec)
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。