mysql5.7当两个字段名类似,查询时会出错
Posted study_php
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql5.7当两个字段名类似,查询时会出错相关的知识,希望对你有一定的参考价值。
excepInfo: select id,describe from iwebshop_student_problem where id=256 order by id desc -- 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 ‘describe from iwebshop_stu‘
这个表中存在两个字段 describe,describe2,
所以需要加上符号`
select `id`,`describe` from iwebshop_student_problem where id=256 order by id desc
这样就不会错误
以上是关于mysql5.7当两个字段名类似,查询时会出错的主要内容,如果未能解决你的问题,请参考以下文章
数据库升级到mysql5.7出现的1067 - Invalid default value for '字段名' (docker版)