从 MySQL 表中选择 1 是什么意思?

mysqlmysqli database

从任何表名中选择 1 语句意味着它只返回 1。例如,如果任何表有 4 条记录,那么它将返回 1 四次。

让我们看一个例子。首先,我们将使用 CREATE 命令创建一个表。

mysql> create table StudentTable
   -> (
   -> id int,
   -> name varchar(100)
   -> );
Query OK, 0 rows affected (0.51 sec)

插入记录

mysql> insert into StudentTable values(1,'John'),(2,'Carol'),(3,'Smith'),(4,'Bob');
Query OK, 4 rows affected (0.21 sec)
Records: 4  Duplicates: 0  Warnings: 0

显示所有记录。

mysql> select *from StudentTable;

这是输出。

+------+-------+
| id   | name  |
+------+-------+
|    1 | John  |
|    2 | Carol |
|    3 | Smith |
|    4 | Bob   |
+------+-------+
4 rows in set (0.00 sec)

以下是实现"select 1"的查询。

mysql> select 1 from StudentTable;

这是输出。

+---+
| 1 |
+---+
| 1 |
| 1 |
| 1 |
| 1 |
+---+
4 rows in set (0.00 sec)

上述查询对 4 条记录返回 1 四次,如果我们有 5 条记录,则上述查询将返回 1 五次。

Note: It returns 1 N times, if the table has N records.

相关文章