0

CodeIgniter を使用して、テーブル内の特定の ID を持つ特定の列を取得しようとしています。次のことを試しました。

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

しかし、それは行全体を提供します。id =$id の行と列名「name」だけが必要です。

ありがとう

4

2 に答える 2

0

CodeIgniter が選択する列を設定する必要があります。http://ellislab.com/codeigniter/user-guide/database/active_record.html#select

于 2013-11-08T00:05:21.410 に答える