什么是MySQL中的“ SELECT TRUE”?
如果行匹配,则语句SELECTTRUE返回1。让我们首先创建一个表-
mysql> create table DemoTable(Name varchar(100));
使用插入命令在表中插入一些记录-
mysql> insert into DemoTable values('Chris'); mysql> insert into DemoTable values('Robert'); mysql> insert into DemoTable values('David');
使用select语句显示表中的所有记录-
mysql> select *from DemoTable;
这将产生以下输出-
+--------+ | Name | +--------+ | Chris | | Robert | | David | +--------+ 3 rows in set (0.00 sec)
以下是对SELECTTRUE的查询-
mysql> select true from DemoTable;
这将产生以下输出-
+------+ | TRUE | +------+ | 1 | | 1 | | 1 | +------+ 3 rows in set (0.00 sec)