如何使用codeigniter将表计数值插入到db中

时间:2013-09-26 04:12:06

标签: php mysql codeigniter

我使用以下代码从db表中打印计数值现在我需要将此计数值插入表中请帮帮我。

 $this->db->like($data);
    $this->db->from('student_table');
    $result= $this->db->count_all_results();
    echo "count:".$result;

这只显示计数值

需要将计数值插入db表

1 个答案:

答案 0 :(得分:1)

它在数据库中非常简单,插入计数值,因为你没有提到要在其中插入计数的表名和属性/字段,我正在提出一般答案!

使用插入查询

$this->db->like($data);
$this->db->from('student_table');
$result= $this->db->count_all_results();
$this->db->query("INSERT INTO tbl_name VALUES('$result')");

或者如果要计算表中的所有行,

$result = $this->db->count_all('table_name');

使用更新查询

$this->db->where('id', $id);  // if particular value to update
$this->db->update('tblName', $result);