douxian7534 2017-10-25 01:35
浏览 31
已采纳

MySQL一次更新多行

I have a table which includes a row for each day of the week.

Each row contains 2 input fields.

enter image description here

I am wanting to click one save button which will update all rows from the table into seperate MySQL rows.

I have the below code to insert new rows (which works fine) but wondering how this can be changed to an UPDATE statement?

 $insertArr = array();
    for ($i=0; $i<$cnt; $i++) {
        $insertArr[] = "('" 
            . mysql_real_escape_string($_GET['Actual'][$i]) .
            "', '" 
            . mysql_real_escape_string($_GET['Period'][$i]) .
            "', '" 
            . mysql_real_escape_string($_GET['AddedBy'][$i]) .
                "', '" 
            . mysql_real_escape_string($_GET['Date'][$i]) .
                "', '" 
            . mysql_real_escape_string($_GET['Employee'][$i]) .
                "', '" 
            . mysql_real_escape_string($_GET['Rotered'][$i]) . "')";
}



 $query = "INSERT INTO hr_employee_rostered_hours (Actual, PeriodID, AddedBy, DateOfHours, EmployeeUniqueID, Rotered) VALUES " . implode(", ", $insertArr);
 mysql_query($query) or trigger_error("Insert failed: " . mysql_error());
}
  • 写回答

2条回答 默认 最新

  • doushizhou4477 2017-10-25 01:50
    关注

    The mysql extension has been deprecated in PHP, and I strongly advice against using it.

    Assuming that you're still getting the values that you want to update using the array,

    Here is a link about PDO (not official docummentation) that helped me out when I first started with PHP and PDO

    Here's an example using PDO

    $updateq = "UPDATE hr_employee_rostered_hours SET (Actual = :actualvalue, PeriodID = :periodid, AddedBy = :addedby,DateOfHours = :dateofhrs, Rotered = :rotered ) WHERE EmployeeUniqueID = :employeeid";
    $updatex = $dbh->prepare($updateq);
    $updatex->bindValue(":actualvalue",$insertArr[0]);
    $updatex->bindValue(":periodid",$insertArr[1]);
    $updatex->bindValue(":addedby",$insertArr[2]);
    $updatex->bindValue(":dateofhrs",$insertArr[3]);
    $updatex->bindValue(":periodid",$insertArr[5]);
    $updatex->bindValue(":employeeid",$insertArr[4]);
    $updatex->execute();
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部