0

我正在尝试使用 Zend_Db_Select 编写一个看起来像这样的选择查询:

SELECT * FROM bar WHERE a = 1 AND (b = 2 OR b = 3)

但是,当使用 where() 和 orWhere() 的组合时,似乎不可能像上面那样使用条件分组。

Zend Framework 中是否有任何本机方式来实现上述目标(无需编写实际查询?)

4

2 回答 2

2

来自手册(示例 11.61。用括号括起来的布尔表达式示例)


// Build this query:
//   SELECT product_id, product_name, price
//   FROM "products"
//   WHERE (price < 100.00 OR price > 500.00)
//     AND (product_name = 'Apple')

$minimumPrice = 100;
$maximumPrice = 500;
$prod = 'Apple';

$select = $db->select()
             ->from('products',
                    array('product_id', 'product_name', 'price'))
             ->where("price < $minimumPrice OR price > $maximumPrice")
             ->where('product_name = ?', $prod);

于 2008-09-17T07:43:00.227 回答
0

上面的参考很好,但是如果你玩的是弦乐呢?

这是上面带有字符串的示例...

// Build this query:
//   SELECT product_id, product_name, price
//   FROM "products"
//   WHERE (product_name = 'Bananas' OR product_name = 'Apples')
//     AND (price = 100)

$name1 = 'Bananas';

$name2 = 'Apples';

$price = 100;

$select = $db->select()

->from('products',
                    array('product_id', 'product_name', 'price'))

->where("product_name = '" . $name1 . "' OR product_name = '" . $name2 . "'")

->where("price=?", $price);

我希望这会有所帮助。花了我一些时间让字符串正常工作。

干杯。

于 2009-04-07T19:33:23.013 回答