我使用这些函数来获取数据库结果。 我想保存所有“select”,“where”...等查询并加载其他功能以便使用
$this->select('title, content, date');
$this->db->where('name', $name);
// Save the query here...
// Do other query
$this->db->select('name');
$query = $this->db->get('other_table');
// Load the query from the save point here
$query2 = $this->db->get('mytable');