MySQL 中的「where 1=1」語句是什麼?

WBOY
發布: 2023-09-04 17:21:03
轉載
1194 人瀏覽過

MySQL 中的“where 1=1”语句是什么?

在 MySQL 中,「Where 1=1」會產生表格中的所有行,因為語句總是為真。一個 為了更好地理解該語句,給出的示例如下 -

首先,在 create 命令的幫助下建立一個表。給出如下 -

mysql> CREATE table WhereConditon
-> (
-> id int,
-> name varchar(100)
-> );
Query OK, 0 rows affected (0.43 sec)
登入後複製

成功建立表後,透過insert指令插入一些記錄 對此的查詢如下 -

mysql> INSERT into WhereConditon values(1,'John');
Query OK, 1 row affected (0.16 sec)

mysql> INSERT into WhereConditon values(2,'Smith');
Query OK, 1 row affected (0.15 sec)

mysql> INSERT into WhereConditon values(3,'Bob');
Query OK, 1 row affected (0.16 sec)

mysql> INSERT into WhereConditon values(4,'David');
Query OK, 1 row affected (0.13 sec)
登入後複製

現在記錄插入成功,可以看到表格中的記錄條數 借助 select 語句進行檢查。給出如下 -

mysql> SELECT * from WhereConditon;
登入後複製

執行上述查詢後,可以看到表中的所有記錄如下 -

+------+-------+
| id   | name  |
+------+-------+
| 1    | John  |
| 2    | Smith |
| 3    | Bob   |
| 4    | David |
+------+-------+
4 rows in set (0.00 sec)
登入後複製

現在,語句 1=1 與 select 語句一起使用,以顯示 table. All the names will be displayed as 1=1 is always true.

對此的查詢如下 -

mysql> select name from WhereConditon where 1=1;
登入後複製

以下是上述查詢的輸出

#
+-------+
| name  |
+-------+
| John  |
| Smith |
| Bob   |
| David |
+-------+
4 rows in set (0.00 sec)
登入後複製

以上是MySQL 中的「where 1=1」語句是什麼?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:tutorialspoint.com
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板