Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在运行以下代码,但找不到错误所在。谁能建议我应该检查的任何东西?
$result = mysql_query("SELECT * FROM table") or die (mysql_error());
您的 SQL 语法有错误;检查与您的 MySQL 服务器版本相对应的手册,以在第 1 行的“表”附近使用正确的语法
table是保留关键字,您必须使用反引号对其进行转义。
table
SELECT * FROM `table`