微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

php – 按字段排序SQL状态异常1064

我一直在

exception 'PDOException' with message 'sqlSTATE[42000]: 
Syntax error or access violation: 1064 
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 
'(questionid,'sfname','slname','school','grade','addr','city','state' at line 1'

从这个声明:

$stmt = $db->prepare('SELECT * FROM event_responses WHERE eventid= :eventid ORDER BY userid DESC,field (questionid,\''.implode("','",$columns1).'\')');

我回应了里面的声明,它对我来说很好看:

SELECT *
FROM event_responses
WHERE eventid= :eventid
ORDER BY userid DESC,'state','zip','semail','sphone','pfname','plname','pemail','pphone','noattend','regid','submitDate','attended','regmethod')

为什么会这样?

解决方法

你在MysqL中遇到了一个奇怪的问题:

Note

By default,there must be no whitespace between a function name and
the parenthesis following it. This helps the MysqL parser distinguish
between function calls and references to tables or columns that happen
to have the same name as a function. However,spaces around function
arguments are permitted.

删除字段后的空格,使表达式为:

SELECT *
FROM event_responses
WHERE eventid = :eventid
ORDER BY userid DESC,field(questionid,'regmethod')

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐