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条)

报告相同问题?

悬赏问题

  • ¥15 Stata 面板数据模型选择
  • ¥20 idea运行测试代码报错问题
  • ¥15 网络监控:网络故障告警通知
  • ¥15 django项目运行报编码错误
  • ¥15 请问这个是什么意思?
  • ¥15 STM32驱动继电器
  • ¥15 Windows server update services
  • ¥15 关于#c语言#的问题:我现在在做一个墨水屏设计,2.9英寸的小屏怎么换4.2英寸大屏
  • ¥15 模糊pid与pid仿真结果几乎一样
  • ¥15 java的GUI的运用