SELECT + INSERT在同一个查询中

时间:2013-11-05 17:38:18

标签: php mysql sql

这就是我现在正在使用的

public function nuevaPlantilla(){
    $query = $this->sql->prepare("SELECT max(did) as nuevodid FROM ".self::tabla_plantillas);
    $exc = $query->execute();
    if (!$exc){
        return false;
    }
    $resultado = $query->get_result();
    $datos = $resultado->fetch_all();
    $did = ($datos[0][0]*1)+1;
    $query = $this->sql->prepare("INSERT INTO ".self::tabla_plantillas." (did, quien, tipo_usuario, did_filtro, valor, pagina) VALUES (?,?,?,?,?,?)");
    if (!$query){
        return false;
    }
    $query->bind_param("isssss", $did, $this->quien, $this->tipo, "", "", $this->qh);
    $exc = $query->execute();
    $query->close();
    return $exc;
}

它有效,但是,是否可以只用一个查询做同样的事情?

请不要建议我使用AUTO_INCREMENT ID。因为多行会有相同的行。

2 个答案:

答案 0 :(得分:1)

使用类似的东西:

insert into destination_table (id, col2, col3)
select * from 
(
  select coalesce(max(id),0)+1,
         'other_value',
         3
  from source_table
) x

SQLFiddle demo

答案 1 :(得分:0)

INSERT INTO table (field, field)
SELECT field, field  FROM table
WHERE field='something';