您的位置:首页 > 数据库 > MySQL

MySQL 当记录不存在时插入,当记录存在时更新

2013-03-15 16:18 573 查看
MySQL 当记录不存在时插入,当记录存在时更新

网上基本有三种解决方法。

第一种:

示例一:插入多条记录

假设有一个主键为 client_id 的 clients 表,可以使用下面的语句:

INSERT INTO clients

(client_id, client_name, client_type)

SELECT supplier_id, supplier_name, 'advertising'

FROM suppliers

WHERE not exists (select * from clients

where clients.client_id = suppliers.supplier_id);

示例一:插入单条记录

INSERT INTO clients

(client_id, client_name, client_type)

SELECT 10345, 'IBM', 'advertising'

FROM dual

WHERE not exists (select * from clients

where clients.client_id = 10345);

使用 dual 做表名可以让你在 select 语句后面直接跟上要插入字段的值,即使这些值还不存在当前表中。

DEMO:

INSERT into at_dsh_temp_baseline (caseID,fStep,fStepDesc,htmlText,resultImage,version,buildVersion,envID) SELECT '8', '2', 'This is a test', '================The
page display Error, please Check================', 'D:\\test\\20130315-162003_webpage.jpg', 'V12', 'B20130312194', '4' FROM at_dsh_temp_baseline WHERE not exists (select * from at_dsh_temp_baseline where caseID='8' and fStep='2' and version='V12' and envID='4')
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: