本文主要是介绍MySQL的INSERT ··· ON DUPLICATE KEY UPDATE使用的几种案例和说明,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
准备工作:
创建一张表,联合主键:
create table test_insert_on_duplicate_key_update(
id tinyint unsigned not null,
birth_day date not null,
score int unsigned not null,
primary key(id, birth_day)
) engine = InnoDB;
准备测试数据:
这篇关于MySQL的INSERT ··· ON DUPLICATE KEY UPDATE使用的几种案例和说明的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!