0

当我插入我的表 empinfo

查询插入表

$sql="INSERT INTO empinfo(EmpName,Add,MobileNo)values('$EmpName','$Add','$MobileNo')";

我得到错误:

#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 'Add,MobileNo)values('jaimin','Baroda','123')' at line 1 
4

2 回答 2

1

AddMySQL 中的保留字。如果您想将其用作标识符,请用反引号将其包围(就像您始终应该使用标识符一样):

$sql="INSERT INTO empinfo(`EmpName`,`Add`,`MobileNo`)values('$EmpName','$Add','$MobileNo')";
于 2013-07-24T09:23:57.597 回答
1

Add是保留字。如果要将其用作列名,则必须将其放在反引号中:

$sql="INSERT INTO empinfo(EmpName,`Add`,MobileNo)values('$EmpName','$Add','$MobileNo')";
于 2013-07-24T09:24:07.753 回答