mysql 查询报错Erreur de syntaxe près de ')' à la ligne 3

WBOY
Release: 2016-06-06 20:07:32
Original
1990 people have browsed it

mysql 查询报错

mysql 查询报错Erreur de syntaxe près de ')' à la ligne 3

回复内容:

mysql 查询报错

mysql 查询报错Erreur de syntaxe près de ')' à la ligne 3

sql不是打印出来了么,就是最后的 IN ()报错的。
当使用NOT IN 或者 IN 的时候建议提前检查你的参数,如果参数为空需要另外处理,例如:

<code>$ids = array();
if (empty($ids)) {
    $rows = array();
} else {
    $rows = $db->from('item')->where(array('IN' => $ids))->query();
}</code>
Copy after login

此外,因为linux系统的文件名是大小写敏感的,因此不建议使用带有大写字母的表名称。

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template