Advertisement
freddy0512

model

Jun 24th, 2015
280
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. <?php
  2. class M_laporanmahasiswa extends CI_Model {
  3.  
  4. function getMahasiswa(){
  5. // $this->db->select('*'); //memeilih semua field
  6. // $this->db->from('mahasiswa'); //memeilih tabel
  7. //$this->db->join('dosen', 'mahasiswa.nim = dosen.kd_dosen');
  8. //$this->db->join('perusahaan', 'dosen.kd_dosen = perusahaan.kd_perusahaan');
  9.  
  10. return $this->db->query("select * frmo mahasisawa a, dosen b, perusahaan c where a.nim=b.kd_dosen and b.kd_dosen=c.kd_perusahaan");
  11.  
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement