在 MySQL 中,“Where 1=1”會生成表中的所有行,因為該語句始終為真。一個
為了更好地理解該語句,給出的示例如下 –
首先,在 create 命令的幫助下創(chuàng)建一個表。給出如下 –
mysql> CREATE table WhereConditon -> ( -> id int, -> name varchar(100) -> ); Query OK, 0 rows affected (0.43 sec)
登錄后復制
成功創(chuàng)建表后,通過insert命令插入一些記錄
對此的查詢?nèi)缦?–
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)
登錄后復制
現(xiàn)在記錄插入成功,可以看到表中的記錄條數(shù)
借助 select 語句進行檢查。給出如下 –
mysql> SELECT * from WhereConditon;
登錄后復制
執(zhí)行上述查詢后,可以看到表中的所有記錄如下 –
+------+-------+ | id | name | +------+-------+ | 1 | John | | 2 | Smith | | 3 | Bob | | 4 | David | +------+-------+ 4 rows in set (0.00 sec)
登錄后復制
現(xiàn)在,語句 1=1 與 select 語句一起使用,以顯示
table. All the names will be displayed as 1=1 is always true.
對此的查詢?nèi)缦?–
mysql> select name from WhereConditon where 1=1;
登錄后復制
以下是上述查詢的輸出
+-------+ | name | +-------+ | John | | Smith | | Bob | | David | +-------+ 4 rows in set (0.00 sec)
登錄后復制
以上就是MySQL 中的“where 1=1”語句是什么?的詳細內(nèi)容,更多請關(guān)注www.92cms.cn其它相關(guān)文章!