douao1854 2019-04-02 11:06
浏览 253
已采纳

INSERT INTO ... ON DUPLICATE KEY UPDATE不更新PHP和mySQL中的重复值

I'm trying to use the funcion INSERT INTO ... ON DUPLICATE KEY to insert some data in a mySQL table. And if there's already a user registered with the same email, i want to update the values.

So I implemented the code below after searching in this discussions: link-1, link-2, and other links...

I also watched the manuals link-4

$query=mysqli_query($conn,"INSERT INTO theElisa_signUp (name, email, telephone, user, psw, role, expire_date)
VALUES ('$name', '$email', 'not-set', '$username', '$password', '$role', '$expire_date')
ON DUPLICATE KEY
UPDATE name = '$name', user ='$username', psw = '$password', expire_date = '$expire_date' ");

In fact, the code can correctly insert a new user. But if I try to update a user that already exist, it creates a new record. So i have two user registered with the same email (I need to update the user if already there's the email in the table)

I hope this question respect the standards and I've already done all the researches in stackoverflow but none of the answers could help me. So please don't mark my question as duplicate.

P.s. I'm actually a web designer with zero experience in coding and this project is beyond my capabilities. But unfortunately I have to solve this question. Thank you.

  • 写回答

2条回答 默认 最新

  • doumu9019 2019-04-02 11:12
    关注

    The column email should be UNIQUE.

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

报告相同问题?

悬赏问题

  • ¥15 求会做聚类,TCN的朋友有偿线上指导。以下是目前遇到的问题
  • ¥100 无网格伽辽金方法研究裂纹扩展的程序
  • ¥15 错误于library(org.Hs.eg.db): 不存在叫‘org.Hs.eg.db’这个名称的程序包,如何解决?
  • ¥60 求一个图片处理程序,要求将图像大小跟现实生活中的大小按比例联系起来的
  • ¥50 求一位精通京东相关开发的专家
  • ¥100 求懂行的大ge给小di解答下!
  • ¥15 pcl运行在qt msvc2019环境运行效率低于visual studio 2019
  • ¥15 MAUI,Zxing扫码,华为手机没反应。可提高悬赏
  • ¥15 python运行报错 ModuleNotFoundError: No module named 'torch'
  • ¥100 华为手机私有App后台保活