mysql 关键字bug
Posted Brittany_yan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql 关键字bug相关的知识,希望对你有一定的参考价值。
今天运行语句 select * from order;
出现bug:
ERROR 1064 (42000): 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‘ at line 1
后来找出原因是order为mysql的关键字
改为 select * from `order`;
以上是关于mysql 关键字bug的主要内容,如果未能解决你的问题,请参考以下文章