MySQL:测试与查询的连接?
在选择查询中使用任何预定义的功能,或者可以在选择查询中打印一些单词,以测试与查询的连接。
语法如下。
SELECT yourValue;
具有预定义功能的选择查询如下。
语法如下。
SELECT anyPredefinedFunctionName();
现在,您可以实现上述语法,以测试与查询的连接。
情况1-查询如下。
mysql> select "This is MySQL" as Display;
以下是输出。
+---------------+ | Display | +---------------+ | This is MySQL | +---------------+ 1 row in set (0.00 sec)
情况2-查询如下。
mysql> select 10*3 as MultiplicationResult;
以下是输出
+---------------------+ | MultiplicationResult| +---------------------+ | 30 | +---------------------+ c1 row in set (0.00 sec)
这是选择查询,用于了解作为预定义功能的连接ID。
情况1-查询如下
mysql> select connection_id() as ConnectionId;
以下是输出
+--------------+ | ConnectionId | +--------------+ | 8 | +--------------+ 1 row in set (0.00 sec)
情况2-这是预定义的函数,database()
用于了解当前数据库名称。
查询如下
mysql> select database();
以下是输出
+------------+ | database() | +------------+ | sample | +------------+ 1 row in set (0.00 sec)