在mysql表名中使用(-)破折号
我要备份数据库时出现错误
A Database Error OccurredError Number: 1064
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '-01-000001' at line 1
SELECT * FROM temp_01-01-000001
Filename: F:\xampp\htdocs\erp_zaara\system\database\DB_driver.php
Line Number: 330
有什么办法可以用表名(temp_01-01-000001)解决这个问题。
回答:
您可以编辑文件/system/database/drivers/mysql/mysql_utility.php的第132行
从:
$query = $this->db->query("SELECT * FROM $table");
至:
$query = $this->db->query("SELECT * FROM `$table`");
以上是 在mysql表名中使用(-)破折号 的全部内容, 来源链接: utcz.com/qa/405280.html