使用codeigniter中的连接活动记录获取db字段的总和

时间:2012-12-26 10:17:36

标签: php mysql codeigniter join codeigniter-2

我有一个包含所有产品详细信息的表名产品和另一个包含每个仓库产品数量详情的whs_products。

我希望从产品表中选择ID,代码和名称,以及product.id = whs_products.product_id

中的数量总和

我正在尝试这个

$this->db->select("id, code, name");
$this->db->from("products");
$this->db->join('whs_products', 'products.id = whs_products.product_id');
$this->db->select("quantity");

我获取whs_products中存在的列表产品而不是总和。有些产品列出两次,因为它们在whs_products中有2个条目。

我想列出所有产品一次只有我想要的数量在数量上为0且在whs_products中的数量大于1我想要显示所有数量的总和

非常感谢帮助!

表格结构

Products
id, code, name, unit, price

whs_products
id, product_id, warehouse_id, quantity

我也有 whs 表用于仓库 ID,姓名,地址


我试过这个先生,

$this->db->select("products.id as productid, products.code, products.name, products.unit, products.cost, products.price,   sum(whs_products.quantity) as 'totalQuantity'")
->from('products')
->join('whs_products', 'whs_products.product_id=products.id', 'left')
->group_by("products.id");
$this->db->get();

一切都很好。但产品总数计算错误。我认为系统在总产品中加1,每次从whs_products获取数量。对于某些产品,数量为2或3次,具体取决于每个仓库。

任何解决方案。 非常感谢您的支持。

1 个答案:

答案 0 :(得分:3)

请尝试以下查询和评论。

示例数据: -

产品

PID     PNAME
1   j
2   k
3   m

whs_Products

WID     PID     QUANTITY
11  2   300
11  2   200
14  2   500
11  1   300
15  3   100
14  3   800

通过whs_products

中的pid查询总数
select pid, wid, sum(quantity) 
from whs_products
group by pid, wid
;

结果:

PID     WID     SUM(QUANTITY)
1       11      300
2       11      500
2       14      500
3       14      800
3       15      100

使用变量查询以获取pid和pid,wid

的用户输入
-- group by pid and wid
set @var:='2'
;
select a.pid, b.pname, a.wid, sum(a.quantity) 
from whs_products a
join products b
on b.pid = a.pid
where a.pid = @var
group by a.pid, wid
;

结果:

PID     PNAME   WID     SUM(A.QUANTITY)
2       k   11  500
2       k   14  500

仅按用户输入pid显示数量的最终查询

查询:

-- by pid only    
set @var:='2'
;
select a.pid, b.pname, sum(a.quantity) 
from whs_products a
join products b
on b.pid = a.pid
where a.pid = @var
group by a.pid
;

结果:

PID     PNAME   SUM(A.QUANTITY)
2       k   1000

因为OP需要CodeIgniter

这是您尝试的先行者。起初我的印象是你已经知道codeigniter的语法,并且你正在寻找SQL逻辑,所以你可以将它转换成你需要的格式。

$this->db->select("a.pid, b.pname, count(a.quantity) as 'toalQuantity'");
$this->db->from('wsh_products a');
$this->db->join('products b', 'a.pid=b.pid', 'inner');
$this->db->group_by("a.pid"); 
$where = "a.pid = 2";
$this->db->get();
$query->results_array();

或写一个函数:):

function getQuantity($prodid = false)
{
  $this->db->select(a.pid, b.pname, count(a.quantity) as 'toalQuantity');
  $this->db->join('wsh_products a', 'a.pid=b.pid');
  if ($prodid !== false)
    $this->db->where('a.pid', $prodid);
  $query = $this->db->get('products b');

  if($query->result() == TRUE)
  {
    foreach($query->result_array() as $row)
    {
      $result[] = $row;
    }
    return $result;
  }
}

编辑为评论中LEFT JOIN请求的OP

要显示Products表中的所有产品,请执行以下操作:

  • select显示来自pid表的Products

  • 使用from Products Left Join Whs_Products

  • 来自Group by pid

  • Products