8

次のように2つのテーブルがあります。

- tblSaler

    SalerID  |  SalerName | 
    ----------------------|
    1        |  sothorn   |
    ----------------------|
    2        |  Daly      |  
    ----------------------|
    3        |  Lyhong    |
    ----------------------|
    4        | Chantra    |
    ----------------------|

- tblProduct

ProductID  | Product  | SalerID |
--------------------------------|
1          | Pen      | 3       |
--------------------------------|
2          | Book     | 2       |
--------------------------------|
3          | Phone    | 3       |
--------------------------------|
4          | Computer | 1       |
--------------------------------|
5          | Bag      | 3       |
--------------------------------|
6          | Watch    | 2       |
--------------------------------|
7          | Glasses  | 4       |
--------------------------------|

私が必要とする結果は次のとおりです。

sothorn | 1
Daly    | 2
Lyhong  | 3
Chantra | 1

私はこれを試しました:

    $this->db->select('count(SalerName) as sothorn where tblSaler.SalerID = 1, count(SalerName) as Daly where tblSaler.SalerID = 2, count(SalerName) as Lyhong where tblSaler.SalerID = 3, count(SalerName) as Chantra where tblSaler.SalerID = 4');
    $this->db->from('tblSaler');
    $this->db->join('tblProduct', 'tblSaler.SalerID = tblProduct.SalerID');
4

4 に答える 4

13

これには、このクエリを使用できます

SELECT
  tblSaler.SalerName,
  count(tblProduct.ProductID) as Total
FROM tblSaler
  LEFT JOIN tblProduct
    ON tblProduct.SalerID = tblSaler.SalerID
GROUP BY tblSaler.SalerID

そして、これがこれのアクティブなレコードです

$select =   array(
                'tblSaler.SalerName',
                'count(tblProduct.ProductID) as Total'
            );  
$this->db
        ->select($select)
        ->from('tblSaler')
        ->join('tblProduct','Product.SalerID = tblSaler.SalerID','left')
        ->group_by('tblSaler.SalerID')
        ->get()
        ->result_array();

デモ

出力

_____________________
| SALERNAME | TOTAL |
|-----------|-------|
|   sothorn |     1 |
|      Daly |     2 |
|    Lyhong |     3 |
|   Chantra |     1 |
_____________________           
于 2013-10-28T07:00:10.607 に答える
4

このコードを試してください。私にとってはうまく機能しており、あなたにも役立ちます。

$this->db->select('SalerName, count(*)');
$this->db->from('tblSaler');        
$this->db->join('tblProduct', 'tblSaler.SalerID = tblProduct.SalerID'); 
$this->db->group_by('tblSaler.SalerID');       
$query = $this->db->get();

以下のこの行を使用して、SQLクエリ全体を取得できます

$query = $this->db->get(); 
echo $this->db->last_query();
于 2013-10-28T06:04:06.193 に答える