0

为什么我会收到一条错误消息?

<?php
$output ="";
$query = "HELP;";
$output = mysql_query($query, $emailTrackerConnection) or die(mysql_error());

echo "<pre>$output</pre>";
?>

我收到的输出:

您的 SQL 语法有错误;检查与您的 MySQL 服务器版本相对应的手册,以在第 1 行的 '' 附近使用正确的语法

4

3 回答 3

3

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 命令

帮助“搜索字符串”

于 2013-01-02T10:11:38.163 回答
1

您在使用时显示指定关键字HELP,例如。

HELP 'contents'
于 2013-01-02T10:07:09.870 回答
1

HELP ;将返回此错误。尝试使用HELP 'statement or keyword or operator' ;获取特定关键字的帮助。

如果您想查找可用于 的关键字/运算符/语句,请HELP使用以下命令:

HELP '%' ;
于 2013-01-02T10:13:16.960 回答