dongmeiwei0226 2014-10-17 13:02
浏览 146
已采纳

使用PHP / PDO进行PostgreSQL UPDATE的RETURNING子句

I execute a simple postgresql update as:

UPDATE data SET Gender=lower(tmp.champs2) 
FROM tmp WHERE data.email=tmp.champs1 
AND (data.Gender IS NULL OR data.Gender='') 
AND tmp.champs2 IS NOT NULL 
AND tmp.champs2!='' 
RETURNING Gender

The PostgreSQL documentation said we can get the number of rows affected with the RETURNING clause.

But how can I get this result with PHP, PDO?

I try something like:

echo $requete = "UPDATE data 
    SET ".$value."=lower(tmp.champs".$num.") 
    FROM tmp 
    WHERE data.email=tmp.champs".$email." 
    AND (data.".$value." IS NULL OR data.".$value."='') 
    AND tmp.champs".$num." IS NOT NULL 
    AND tmp.champs".$num."!='' 
    RETURNING ".$value;

    $db->exec($requete);

    $db->fetch(PDO::FETCH_NUM);

    echo $row[0];

The correct number of rows updated are not returned.

  • 写回答

2条回答 默认 最新

  • douluanji8752 2014-10-18 14:14
    关注

    According to PDO's doc:

    PDO::exec() executes an SQL statement in a single function call, returning the number of rows affected by the statement.

    Your current code $db->exec($requete); ignores the return value, which is the mistake. This should be for instance:

    $affected_rows = $db->exec($requete);
    

    A RETURNING clause is not necessary to get the number of rows affected (besides, it doesn't exist in some backends that PDO supports). The purpose of RETURNING is to retrieve rows in addition to updating, all in the same query.

    In the case where the RETURNING clause is necessary and results must be fetched, PDO::query should be used instead of PDO:exec(). The PHP code to fetch the results is the same as if the query was a SELECT.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥100 Jenkins自动化部署—悬赏100元
  • ¥15 关于#python#的问题:求帮写python代码
  • ¥20 MATLAB画图图形出现上下震荡的线条
  • ¥15 关于#windows#的问题:怎么用WIN 11系统的电脑 克隆WIN NT3.51-4.0系统的硬盘
  • ¥15 perl MISA分析p3_in脚本出错
  • ¥15 k8s部署jupyterlab,jupyterlab保存不了文件
  • ¥15 ubuntu虚拟机打包apk错误
  • ¥199 rust编程架构设计的方案 有偿
  • ¥15 回答4f系统的像差计算
  • ¥15 java如何提取出pdf里的文字?