CodeIgniter - return only one row?

后端 未结 10 1353
鱼传尺愫
鱼传尺愫 2020-12-01 02:43

At the moment if I am doing a query on the database that should only return one row, using:

...query stuff...
$query = $this->db->get();
$ret = $query-         


        
10条回答
  •  不思量自难忘°
    2020-12-01 03:01

    We can get a single using limit in query

    $query = $this->db->get_where('mytable', array('id' => $id), $limit, $offset);

     $query = $this->db->get_where('mytable', array('id' => $id), $limit, $offset);
    

提交回复
热议问题