date'); – $query = $this->db->get('mytable'); • 利用 select + from + get 查詢 – $this->db->select('title, content, date'); – $this->db->from('mytable'); – $query = $this->db->get(); • SELECT title, content, date FROM mytable • 加上判斷條件 where – $this->db->where('name', $name); – $this->db->where('title', $title); – $this->db->where('status', $status);