如果Codeigniter不存在则插入

时间:2014-01-02 14:25:27

标签: php mysql

我遇到以下问题我试图将数据插入表格中 phone,sushi_service_id都有一行active = 1 例如:

ID | Phone | sushi_service_id | active
---------------------------------------
1  | 455   | 1                | 1 (LEGAL)
3  | 455   | 1                | 0 (LEGAL)
4  | 455   | 1                | 0 (LEGAL)
5  | 455   | 1                | 1  (NOT LEGAL! HAS THE SAME PHONE+SUSHI_SERVICE_ID+ACTIVE=1)

这是我的codeigniter代码: 我怎样才能像上面说的那样改进它?

public function add($service, $phone, $sushi_subscription_id, $answer_id, $affiliate_id, $ip, $query, $invite_type, $invite_msg_id)
{

    $this->db->set('service_id', $service->id);
    $this->db->set('sushi_service_id', $service->sushi_service_id);
    $this->db->set('phone', $phone);

    if ($sushi_subscription_id) {
        $this->db->set('sushi_subscription_id', $sushi_subscription_id);
    }

    $this->db->set('answer_id', $answer_id);
    if ($affiliate_id) {
        $this->db->set('affiliate_id', $affiliate_id);
    }

    $this->db->set('added', 'NOW()', FALSE);

    $this->db->set('active', 1);
    $this->db->set('ip', $ip);

    $this->db->set('query', $query);

    if ($invite_type) {
        $this->db->set('invite_type', $invite_type);
    }

    if ($invite_msg_id) {
        $this->db->set('invite_msg_id', $invite_msg_id);
    }

    return ($this->db->insert($this->_table_name)) ? $this->db->insert_id() : FALSE;
}

2 个答案:

答案 0 :(得分:2)

我只会执行select * from XX where active = 1,然后根据num_rows插入查询的结果。

答案 1 :(得分:-2)

最简单的方法是使用ON DUPLICATE KEY UPDATE查询进行单个INSERT。

示例结构:

INSERT INTO table ... VALUES .... ON DUPLICATE KEY UPDATE