首頁  >  文章  >  資料庫  >  MySQL 中的「where 1=1」語句是什麼?

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

WBOY
WBOY轉載
2023-09-04 17:21:031192瀏覽

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刪除