风水罗盘使用:SQL语法错误急救11

来源:百度文库 编辑:高考问答 时间:2024/05/01 17:59:40
insert into order(all_order_oid,order_serial,company_id,allot_id,userid,total,state,audit,audit_dateline,name,tel,mobile,country_code,address,expect_date,payfor_type,transit,payout,flag,dateline) values('20060713-5642-00002','20060713-5642-00002-00003',3,0,5,100,0,0,0,'trueName','12345678','012345678901','106102104121','天河区瑞华大厦8H','1159943779',0,0,0,0,1152786979)
MySQL 返回:

#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 'order(all_order_oid,order_serial,company_id,allot_id,userid,tota

上面说的对 order是关键字 但是在mysql中 用“`”这个符号
这是键盘1 前面那个 不是单引号 写成这样就可以了“`order`”

这个错误的意思是:
你有一个SQL错误,检查符合你的 MySQL 伺候器版本
让正确的语法接近使用的命令
好像是你的某个字段使用的不正确,类型不符合
而且不能使用关键字作为字段

晕 第三个了 呵呵 不知道我给你答的是不是对的