在mysql表名中使用( - )破折号

时间:2013-09-07 06:15:04

标签: mysql

我想备份我的数据库时出错

A Database Error Occurred

Error 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)来解决这个问题。

2 个答案:

答案 0 :(得分:41)

您必须添加引号,因为您的表名包含数字。我认为以下查询将起作用。

SELECT * FROM `temp_01-01-000001`

答案 1 :(得分:17)

您可以编辑文件/system/database/drivers/mysql/mysql_utility.php的第132行

来自:

$query = $this->db->query("SELECT * FROM $table");

要:

$query = $this->db->query("SELECT * FROM `$table`");