在Phalcon \ Mvc \ Model \ Criteria中

时间:2015-06-26 20:53:29

标签: php sql phalcon

我正在编写我的第一个phalcon应用程序,并且有一个使用Phalcon \ Mvc \ Model \ Criteria过滤查询的问题。

最后我想要这样的查询

SELECT * 
FROM table 
WHERE 
  status = 'A' AND
  (
    title LIKE 'combining%' OR
    title LIKE 'phalcon%' OR
    (
      title LIKE 'criteria%' AND
      title LIKE '%phalcon'
    )
  )

对我而言,似乎没有办法在phalcons模型标准中使用括号。实现这一目标的唯一方法是编写phql。

我可能会编写类似这样的内容,而不是编写完整的phql,但这样做会有同样的复杂性

<?php

$query = Table::query();
$query->where('status = :status:', array('status' => 'A'));
$query->andWhere('(
  title LIKE :title1: OR 
  title LIKE :title2: OR (
    title LIKE :title3: AND 
    title LIKE :title4:
  )
)', array(
  'title1' => 'combining%',
  'title2' => 'phalcon%', 
  'title3' => 'criteria%',
  'title4' => '%phalcon'
));

1 个答案:

答案 0 :(得分:0)

看起来像Criteria&#34;其中&#34;,&#34;以及&#34;&#34;和&#34;或者&#34;方法将为您添加外括号,然后您可以手动编写内括号。

$query = Model::query()
        ->where('status = "A"')
        ->andWhere('title LIKE "combining%" OR
            title LIKE "phalcon%" OR
            (
                title LIKE "criteria%" AND
                title LIKE "%phalcon"
            )
        ');
$models = $query->execute();

您可以测试where子句是否正确。

var_dump($query->getWhere());