插入MySQL表或更新(如果存在)

我想将一行添加到数据库表中,但如果一行存在具有相同的唯一键,我想更新该行。

例如,

insert into table (id, name, age) values(1, "A", 19)

假设唯一的关键是id ,并且在我的数据库中有id = 1的行。 在这种情况下,我想用这些值更新该行。 通常这会产生错误。 如果我使用insert IGNORE它会忽略错误,但它仍然不会更新。


使用INSERT ... ON DUPLICATE KEY UPDATE

查询:

INSERT INTO table (id, name, age) VALUES(1, "A", 19) ON DUPLICATE KEY UPDATE    
name="A", age=19

检查REPLACE

http://dev.mysql.com/doc/refman/5.0/en/replace.html

REPLACE into table (id, name, age) values(1, "A", 19)

尝试一下:

INSERT INTO table (id, name, age) VALUES (1, 'A', 19) ON DUPLICATE KEY UPDATE id = id + 1;

希望这可以帮助。

链接地址: http://www.djcxy.com/p/30515.html

上一篇: Insert into a MySQL table or update if exists

下一篇: How to find all the tables in MySQL with specific column names in them?