MYSQL 中的 WHERE 子句有什么问题?
拜托,我需要帮助!
不管我把这个子句放在哪里:WHERE romaneios_detalhes.id_romaneio = '.$idr.' 它总是返回语法错误...我尝试过使用和不使用“table_name.”,在我的语句的所有语句之后和之前,使用或不使用逗号...没有任何效果,我确信解决方案非常简单...
写这个的正确位置或正确方法是什么?
$sql3 = 'SELECT
produtos_linhas.linha AS `COUNT(linha)`,
produtos_tipos.tipo AS `COUNT(tipo)`,
COUNT(romaneios_detalhes.quantidade) AS `COUNT(quantidade)`
FROM romaneios_detalhes
WHERE romaneios_detalhes.id_romaneio = '.$idr.'
INNER JOIN produtos ON romaneios_detalhes.codigo = produtos.codigo
INNER JOIN produtos_linhas ON produtos.id_linha = produtos_linhas.id
INNER JOIN produtos_tipos ON produtos.id_tipo = produtos_tipos.id
GROUP BY produtos_linhas.linha, produtos_tipos.tipo ';
echo '<p>'.$sql3.'</p>';
/* OUTPUT OF THIS ECHO:
SELECT produtos_linhas.linha AS `COUNT(linha)`, produtos_tipos.tipo AS `COUNT(tipo)`, COUNT(romaneios_detalhes.quantidade) AS `COUNT(quantidade)` FROM romaneios_detalhes WHERE romaneios_detalhes.id_romaneio = 3 INNER JOIN produtos ON romaneios_detalhes.codigo = produtos.codigo INNER JOIN produtos_linhas ON produtos.id_linha = produtos_linhas.id INNER JOIN produtos_tipos ON produtos.id_tipo = produtos_tipos.id GROUP BY produtos_linhas.linha, produtos_tipos.tipo
*/
$qry3 = mysql_query($sql3) or die ($qry3_err.mysql_error());
Please, I need help!
Don't matter where I put this clause: WHERE romaneios_detalhes.id_romaneio = '.$idr.'
it's always returns a syntax error... I tried with and without the "table_name.", after and before all setences of my statment, with and without commas... nothing works and I am sure the solution is pretty simple...
What is the right place or right way to write this?
$sql3 = 'SELECT
produtos_linhas.linha AS `COUNT(linha)`,
produtos_tipos.tipo AS `COUNT(tipo)`,
COUNT(romaneios_detalhes.quantidade) AS `COUNT(quantidade)`
FROM romaneios_detalhes
WHERE romaneios_detalhes.id_romaneio = '.$idr.'
INNER JOIN produtos ON romaneios_detalhes.codigo = produtos.codigo
INNER JOIN produtos_linhas ON produtos.id_linha = produtos_linhas.id
INNER JOIN produtos_tipos ON produtos.id_tipo = produtos_tipos.id
GROUP BY produtos_linhas.linha, produtos_tipos.tipo ';
echo '<p>'.$sql3.'</p>';
/* OUTPUT OF THIS ECHO:
SELECT produtos_linhas.linha AS `COUNT(linha)`, produtos_tipos.tipo AS `COUNT(tipo)`, COUNT(romaneios_detalhes.quantidade) AS `COUNT(quantidade)` FROM romaneios_detalhes WHERE romaneios_detalhes.id_romaneio = 3 INNER JOIN produtos ON romaneios_detalhes.codigo = produtos.codigo INNER JOIN produtos_linhas ON produtos.id_linha = produtos_linhas.id INNER JOIN produtos_tipos ON produtos.id_tipo = produtos_tipos.id GROUP BY produtos_linhas.linha, produtos_tipos.tipo
*/
$qry3 = mysql_query($sql3) or die ($qry3_err.mysql_error());
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
问题是您的 WHERE 子句位于错误的位置;它必须位于 JOIN 子句之后。
The issue is that your WHERE clause is in the wrong place; it must be after your JOIN clauses.
问题是 INNER JOINS 必须位于 where 子句之前!
您需要将 where 子句移到末尾的 group by 之前。
The problem is that the INNER JOINS MUST go before the where clause!
You need to move the where clause at the end, before the group by.
Icarus 和 Brian 是对的,移动到 JOIN 下面的位置。
请注意,我希望 $idr 不会不受 ? 参数或其他内容的保护,否则您将容易受到 SQL 注入的攻击。
Icarus and Brian are right, move WHERE below the JOINs.
Just a note, I hope $idr is not coming unprotected from a ?parameter or something, or you will be vulnerable for SQL injection.