0

我想知道是否需要选择(where 语句)两次,如果我想更新数据库中的特定用户。

例子,

// Add new income for the day
function add_new_income($user_id, $budget_group_id, $day, $month, $year, $income)
{

    // Check if there has been posted anything at the same day
    $this->db->where('day',$this->current_date);
    $this->db->where('month',$this->current_month);
    $this->db->where('user_id',$user_id);
    $this->db->where('budget_group_id',$budget_group_id);

    $query = $this->db->get('budget_day',1);

    // Check if something was found
    if($query->num_rows() > 0)
    {
        // If something was found, update the value
        $data = array('income_total' => $income);
        $this->db->update('budget_day',$data);
    }

}

这行得通吗?还是我必须运行一个新的“db->where”语句?

4

2 回答 2

1

你需要写两次 where 条件,但你可以单行尝试如下:

$this->db->where(array('day'=>$this->current_date, 'month'=>$this->current_month, 'user_id'=>$user_id, 'budget_group_id'=>$budget_group_id));
于 2012-11-22T09:30:14.670 回答
0

您将不得不whereupdate. 最好将所有where条件存储在其中并在必要时array使用它arrayselectupdate

$where = array(
    'day' => $this->current_date,
    'month' => $this->current_month,
    'user_id' => $user_id,
    'budget_group_id' => $budget_group_id
);
...
$this->db->where($where);

在您的情况下,似乎不需要两个查询,您只需要运行update查询。您可以使用它$this->db->affected_rows()来检查某些内容是否已更新。

于 2012-11-22T09:30:37.240 回答