dongluedeng1524 2013-01-05 12:07
浏览 254
已采纳

我可以在一个MySQL查询中使用多个WHERE语句吗?

Disclaimer: I know it's possible to add AND and OR operators into a single WHERE statement, and this is generally the proper way to do it...

However, I'm building a complex query dynamically based on a variety of external factors. For the purposes of readability and and maintainability, it would be a lot tidier if I could have have one WHERE statement for certain conditions that always need to be met, but then add another (second) one later that will change depending on the circumstances.

A. Is this valid MySQL? B. Is it a terrible idea for some particular reason?

Here's a simplified example:

<?php 
$query = "
SELECT a,b,c
FROM table1
LEFT JOIN table2 on foo=bar
LEFT JOIN table3 on foo2=bar2
...
WHERE foobar = something_that_is_consistent 
AND boobar = something_else_consistent
...
";

if ( $something_special ) {
$query .= "WHERE ..."
}

if ( $something_else_special ) {
$query .= "WHERE ..."
}

This is a trivial example, but hopefully it demonstrates what I'm thinking about and how I'm trying to avoid big gangly nested conditionals inside the query string.

  • 写回答

3条回答 默认 最新

  • dtvam48220 2013-01-05 12:12
    关注

    your WHERE should be one and then use AND

       <?php 
       $query = "
     SELECT a,b,c
     FROM table1
     LEFT JOIN table2 on foo=bar
     LEFT JOIN table3 on foo2=bar2
     ...
     WHERE foobar = something_that_is_consistent 
     AND boobar = something_else_consistent
     ...
     ";
    
    if ( $something_special ) {
     $query .= "AND ..."
     }
    
     if ( $something_else_special ) {
     $query .= "AND ..."
     }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部