在 MySQL 表中,select 1 意味着什么?
语句 select 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.
广告