爲什麼我收到此錯誤消息?命令導致SQL語法錯誤
<?php
$output ="";
$query = "HELP;";
$output = mysql_query($query, $emailTrackerConnection) or die(mysql_error());
echo "<pre>$output</pre>";
?>
輸出我得到:
你在你的SQL語法錯誤;檢查對應於你的MySQL服務器版本正確的語法在1號線
爲什麼我收到此錯誤消息?命令導致SQL語法錯誤
<?php
$output ="";
$query = "HELP;";
$output = mysql_query($query, $emailTrackerConnection) or die(mysql_error());
echo "<pre>$output</pre>";
?>
輸出我得到:
你在你的SQL語法錯誤;檢查對應於你的MySQL服務器版本正確的語法在1號線
HELP;
(無參數)是MySQL命令行工具的內部命令,而不是一個SQL命令:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 1862
Server version: 5.1.39-community MySQL Community Server (GPL)
Copyright (c) 2000, 2012, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
然而,如果你添加一個搜索字符串,你會得到一個SQL command:
HELP 'SEARCH_STRING'
HELP ;
將返回該錯誤。嘗試使用HELP 'statement or keyword or operator' ;
獲取有關特定關鍵字的幫助。
如果您想了解哪些關鍵字/運營/報表可用於HELP
使用,使用此:
HELP '%' ;
@JW。它具有HELP命令http://dev.mysql.com/doc/refman/5.0/en/help.html –
根據TFM,您需要一個搜索字符串http://dev.mysql.com/doc/refman/ 5.0/en/help.html –
單獨幫助不是查詢 –