Heim  >  Artikel  >  Datenbank  >  [小技巧]当字段名与MySQL保留字冲突的解决办法

[小技巧]当字段名与MySQL保留字冲突的解决办法

WBOY
WBOYOriginal
2016-06-07 16:39:351105Durchsuche

我们知道通常的SQL查询语句是这么写的: select col from table; 这当然没问题,但如果字段名是“from”呢? select from from table; 若真的这么写,必然出错,当字段名与MySQL保留字冲突时,可以用字符“`”将字段名括起来: select `from` from table; 搞

我们知道通常的SQL查询语句是这么写的:

select col from table;

这当然没问题,但如果字段名是“from”呢?

select from from table;

若真的这么写,必然出错,当字段名与MySQL保留字冲突时,可以用字符“`”将字段名括起来:

select `from` from table;

搞定。

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