codeigniter将复杂查询更改为活动记录

时间:2013-04-18 12:41:38

标签: sql codeigniter activerecord

我有一个codeigniter应用程序。

我的活动记录语法完美无缺,并且是:

  function get_as_09($q){
    $this->db->select('m3');
    $this->db->where('ProductCode', $q);
    $query = $this->db->get('ProductList');
    if($query->num_rows > 0){
        foreach ($query->result_array() as $row){
            $row_set[] = htmlentities(stripslashes($row['m3'])); //build an array
       }
       return $row_set;
    }
  }

这实际上是

select 'm3' from 'ProductList' where ProductCode='$1'

我需要做的是将以下查询转换为活动记录类型查询,并按照上述活动记录语法将其返回给控制器:

select length from
(SELECT  
      [Length]
      ,CONCAT(([width]*1000),([thickness]*1000),REPLACE([ProductCode],concat(([width]*1000),([thickness]*1000),REPLACE((convert(varchar,convert(decimal(8,1),length))),'.','')),'')) as options
  FROM [dbo].[dbo].[ProductList]) as p
  where options='25100cr' order by length

我想象下面的内容,但这不起作用。

$this->db->select(length);
$this->db->from(SELECT  [Length],CONCAT(([width]*1000),([thickness]*1000),REPLACE[ProductCode],concat(([width]*1000),([thickness]*1000),REPLACE((convert(varchar,convert(decimal(8,1),length))),'.','')),'')) as options
      FROM [dbo].[dbo].[ProductList]);
$this->db->where(options, $q);
$this->db->order(length, desc);

一如既往的帮助。再次感谢。

1 个答案:

答案 0 :(得分:2)

您可以使用codeigniter的子查询方式为此目的执行此操作,您将不得不破解codeigniter。像这样 转到system / database / DB_active_rec.php从这些函数中删除public或protected关键字

public function _compile_select($select_override = FALSE)
public function _reset_select()

现在子查询写入可用现在这里是带有活动记录的查询

$select =   array(
                'Length'
                'CONCAT(([width]*1000)',
                'thickness * 1000',
                'REPLACE(ProductCode, concat((width*1000),(thickness*1000),REPLACE((convert(varchar,convert(decimal(8,1),length))),'.','')),'')) as options'
);
$this->db->select($select);
$this->db->from('ProductList');

$Subquery = $this->db->_compile_select();

$this->db->_reset_select();

$this->db->select('length');
$this->db->from("($Subquery)");
$this->db->where('options','25100cr');
$this->db->order_by('length');

事情已经完成了。干杯!!! 注意:使用子查询时,必须使用

$this->db->from('myTable')

而不是

$this->db->get('myTable')

运行查询。

Source