將任何預定義函數與選擇查詢一起使用,或者您可以使用選擇查詢列印一些單字,以測試與查詢的連接。
語法如下。
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)
以上是MySQL:測試與查詢的連線?的詳細內容。更多資訊請關注PHP中文網其他相關文章!