Heim  >  Artikel  >  Datenbank  >  mySQL字段中包含关键字的插入有关问题

mySQL字段中包含关键字的插入有关问题

WBOY
WBOYOriginal
2016-06-07 16:23:551178Durchsuche

mySQL字段中包含关键字的插入问题 表 tb_system_help2中包含关键字字段order 插入时会报错。 INSERT INTO tb_system_help2(sysid,sysname,helpid,helpname,parentid,isLeaf,order) VALUES(?,?,?,?,?,?,?) ?解决办法: INSERT INTO tb_system_help2(sysid,sysn

mySQL字段中包含关键字的插入问题

tb_system_help2中包含关键字字段order 插入时会报错。

INSERT INTO tb_system_help2(sysid,sysname,helpid,helpname,parentid,isLeaf,order) VALUES(?,?,?,?,?,?,?)

?解决办法:

INSERT INTO tb_system_help2(sysid,sysname,helpid,helpname,parentid,isLeaf,`order`) VALUES(?,?,?,?,?,?,?)

?

改成?`order`?,注意是数字键1旁边的反引号` ?(选用英文输入法),而?不是'??单引号

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn