sql >> Databáze >  >> RDS >> Mysql

Aktualizujte řádek, ale vložte, pokud řádek v codeigniter neexistuje

Nejprve vyberte z tabulky vše image_id.

$data = $this->db->select(`image_id`)->get($this->table_name)->result_array();

Uveďte image_id do pole.

$image_ids=array();

foreach($data as $key => $value):

$image_ids[$key]=$value[`image_id`];

endforeach;

$update = array(
   array('image_id' => 1, 'name' => 'Party Gustav'),
   array('image_id' => 2, 'name' => 'Peter'),
   array('image_id' => 3, 'name' => 'Lisa')
)

Zkontrolujte, zda existují image_id:

$update_query= $this->db->where_in(`image_ids`,$image_ids)
               ->get($this->table_name)->result();

if($update_query->num_rows() > 0):

  $this->db->update_batch($update,$this->table_name);//update if ids exist
else
   $this->db->insert_batch($update,$this->table_name);//insert if does not exist
endif;


  1. Jak odstranit úvodní a/nebo koncové mezery řetězce v T-SQL

  2. Fuzzy párování pomocí T-SQL

  3. mysql count group tím, že má

  4. Odstraňování problémů Microsoft SQL Server Error 18456