我的基本插入查询不起作用..我知道这是一个非常基本的原始问题,但我无法解决
我的代码
$a="nvsdjkvn";
$b="bhjxcbncj";
mysql_select_db("vas1",$con);
$s = "insert into updates(update,dates) values ('$b','$a')";
$re = mysql_query($s);
我收到了这个错误:
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 'update,dates) values ('nvsdjkvn','bhjxcbncj')' at line 1
我的表名是:使用两列“update”和“dates”进行更新,两者都是“varchar”类型