dqwh1201 2013-05-19 06:14
浏览 104
已采纳

如果不存在则插入数据

I have two tables cw_users and ref_users, both have a column named id.

I'm using ISAM so can't use a foreign key. So now I wanted to insert id from cw_users into ref_users if it didn't exist.

This is what I did, but didn't help:

$id = $_SESSION['id'];
$ref_code=md5($id);

mysql_query("INSERT INTO ref_users (id) VALUES ('$id') WHERE NOT EXISTS (SELECT FROM cw_users where id='$id')"); 
  • 写回答

4条回答 默认 最新

  • duanchuo7741 2013-05-19 06:20
    关注

    The correct syntax is INSERT IGNORE INTO

    INSERT IGNORE INTO ref_users (id)
    VALUES ('$id')
    

    It will insert if the value does not exist, and ignore the statement if it does.

    Note that this will only work if id is the Primary Key

    EDIT: It seems from your comments that you would be much better off using ON DUPLICATE KEY UPDATE.

    Try this query

    INSERT INTO ref_users(id, ref_code)
    VALUES ('$id', '$ref_code')
    ON DUPLICATE KEY UPDATE
    ref_code = '$ref_code'
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(3条)

报告相同问题?

悬赏问题

  • ¥20 求个正点原子stm32f407开发版的贪吃蛇游戏
  • ¥15 正弦信号发生器串并联电路电阻无法保持同步怎么办
  • ¥15 划分vlan后,链路不通了?
  • ¥20 求各位懂行的人,注册表能不能看到usb使用得具体信息,干了什么,传输了什么数据
  • ¥15 个人网站被恶意大量访问,怎么办
  • ¥15 Vue3 大型图片数据拖动排序
  • ¥15 Centos / PETGEM
  • ¥15 划分vlan后不通了
  • ¥20 用雷电模拟器安装百达屋apk一直闪退
  • ¥15 算能科技20240506咨询(拒绝大模型回答)