-1

我是 postresql 的新手,我很惭愧地认识到我不确定如何正确执行更新。

每次我尝试 pg_query($update); 它给了我这个:查询失败:错误:无法在只读事务中执行更新。

在此更新之前,我执行了一个选择查询。

select 语句从数据库中检索 50000 行。更具体地说,我正在尝试对 1000 行执行 when /case 更新。查询格式正确,我已经对其进行了测试。

$sqlstr = "update abcd set country = CASE" ;
$temp = "";
while($myrow = pg_fetch_assoc($result)) {
    if ($cnt < 1000) {
        $country = exec('geoiplookup '.$myrow['ip']);
        $temp .= " WHEN id = ".$myrow['id']." then '".$country."'";
        $cnt++;
    }
    else {
        $sqlstr = $sqlstr.$temp." END ; ";
        pg_query($sqlstr);
        $temp = "";
    }
}
4

1 回答 1

1
$sqlstr = "update abcd set country = CASE" ;
$temp = "";
while($myrow = pg_fetch_assoc($result)) 
{

    if ($cnt < 1000)
    {
        $country = exec('geoiplookup '.$myrow['ip']);
        $temp .= " WHEN id = ".$myrow['id']." then  '".$country."'"; 
        $cnt++;
    }
    else
    {
        $sqlstr =  $sqlstr.$temp." END ; ";
        pg_query($sqlstr);

        $temp = "";

    }
} 
于 2013-01-30T15:52:31.763 回答