如果 user_id 在 table 中是唯一的,则插入记录,如果不是,则更新列

Insert record if user_id is unique in table, if not update column

如果 user_id 在 table map 中是唯一的,我需要插入记录,但如果不是,则更新 user_id=:user_id 的行有数据...

我的尝试:

  try {

      $result = $db->prepare('SELECT user_id FROM map WHERE user_id=:user_id');
      $result->bindParam(':user_id', $user_id); 
      $result->execute();

    //echo $jsonTable;
    } catch(PDOException $e) {
        echo 'ERROR: ' . $e->getMessage();
    }
           try {   
               if ($result==null) {
               $STH = $db->prepare("INSERT INTO map (json, user_id) VALUES (:json, :user_id)");

                $STH->bindParam(':json', $_POST['mapData']);
                $STH->bindParam(':user_id', $user_id);
                $STH->execute();
               } else {
                $STH = $db->prepare("UPDATE map SET json = :json WHERE user_id= :user_id");

                $STH->bindParam(':json', $_POST['mapData']);
                $STH->bindParam(':user_id', $user_id);
                $STH->execute(); 
               }
            } catch (PDOException $e) {
                echo $e->getMessage();
            }
            echo "<p>Data submitted successfully</p>";

        }

所以这里我尝试检查的是user_id我需要将exist添加到table,如果没有user_id,那么如果准备好user_id就是new然后我尝试插入数据,但是如果 user_id 已经存在 table 然后更新该记录...

但这对我不起作用,也不给我任何错误?

我是 php 的新手,很抱歉问了一个小问题...谢谢!

更新: 我也尝试插入,但如果 user_id 重复,则更新:

        try {        
         $STH = $db->prepare("INSERT INTO map (user_id, json) VALUES (:user_id,:json)
on duplicate key update json=values(json)");


                $STH->bindParam(':json', $_POST['mapData']);
                $STH->bindParam(':user_id', $user_id);

                $STH->execute();

            } catch (PDOException $e) {
                echo $e->getMessage();
            }
            echo "<p>Data submitted successfully</p>";
    }

要检查唯一性,您可以使用唯一键让数据库检查唯一性:http://dev.mysql.com/doc/refman/5.6/en/mysql-indexes.html

或者更好,通常 id 是 table 的主键,这意味着您无需担心唯一性,主键始终是唯一的,数据库会为您检查它