eric
eric

Reputation: 3

converting MySQL query to Codeigniter syntax

I have some problem converting a MYSQL query to CI syntax.

This my MySQL syntax:

select a.pbj_name as 'NAMA PERUSAHAAN', count(a.id_pbj) as 'JUMLAH PAKET', group_concat(c.paket_kode) as 'PILIHAN PAKET'
from jed_pbj a
left join jed_paket_pbj b
       on a.id_pbj=b.id_pbj
left join jed_paket c
       on b.id_paket=c.id_paket
group by a.id_pbj

Upvotes: 0

Views: 947

Answers (1)

Paulraj
Paulraj

Reputation: 3397

Check out this Active Record class in Codeigniter,

$this->db->select("a.pbj_name as 'NAMA PERUSAHAAN', count(a.id_pbj) as 'JUMLAH PAKET', group_concat(c.paket_kode) as 'PILIHAN PAKET'");
$this->db->from('jed_pbj a');
$this->db->join('jed_paket_pbj b', 'a.id_pbj=b.id_pbj', 'left');
$this->db->join('jed_paket c', 'b.id_paket=c.id_paket', 'left');
$this->db->group_by("a.id_pbj"); 
$this->db->get();

Upvotes: 2

Related Questions