sql >> Database >  >> RDS >> Mysql

Een record dupliceren in MySQL

Ik heb eindelijk deze code gevonden. Ik weet zeker dat het mensen in de toekomst zal helpen. Dus hier is het.

function DuplicateMySQLRecord ($table, $id_field, $id) {
  // load the original record into an array
  $result = mysql_query("SELECT * FROM {$table} WHERE {$id_field}={$id}");
  $original_record = mysql_fetch_assoc($result);

  // insert the new record and get the new auto_increment id
  mysql_query("INSERT INTO {$table} (`{$id_field}`) VALUES (NULL)");
  $newid = mysql_insert_id();

  // generate the query to update the new record with the previous values
  $query = "UPDATE {$table} SET ";
  foreach ($original_record as $key => $value) {
    if ($key != $id_field) {
        $query .= '`'.$key.'` = "'.str_replace('"','\"',$value).'", ';
    }
  }
  $query = substr($query,0,strlen($query)-2); # lop off the extra trailing comma
  $query .= " WHERE {$id_field}={$newid}";
  mysql_query($query);

  // return the new id
  return $newid;
}

Hier is de link naar het artikel http://www.epigroove.com/posts/79/ how_to_duplicate_a_record_in_mysql_using_php



  1. Hoe maak je een weergave in SQL

  2. Hoe current_date werkt in PostgreSQL

  3. Hoe kunnen we de grootte van de uitvoerparameter definiëren in de opgeslagen procedure?

  4. Waarschuwing:kan header-informatie niet wijzigen - headers zijn al per fout verzonden