开发者

mysql error 1064 when inserting

开发者 https://www.devze.com 2023-01-28 01:11 出处:网络
1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL se开发者_如何转开发rver version for the right syntax to use near \'(country,ping,order) VALUES (China,1,1)

1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL se开发者_如何转开发rver version for the right syntax to use near '(country,ping,order) VALUES (China,1,1)' at line 1

this is my code

INSERT INTO  
  (country, ping, order) 
VALUES 
  ('China', '1', '1');


You're missing the Table Name. Try:

INSERT INTO MYTABLENAME (country,ping,order) VALUES ('China','1','1');


are ping and order text fields or numeric? if numeric remove the ticks from the 1's

INSERT INTO Tablename (country,ping,order) VALUES ('China',1,1)

could also be reserved word try:

INSERT INTO Tablename (country,`ping`,`order`) VALUES ('China',1,1)


Your insert statement is missing the table name:

INSERT INTO tbl_name (col_name,...) VALUES (expr,...)


you are missing table name. also make sure that those quotes are necessary

0

精彩评论

暂无评论...
验证码 换一张
取 消