表product中存在一些数据,现在需要把另外的一些数据插入到表product中,如果数据已经存在则更新,如果不存在就插入到这张表product中。
将需要更新或插入的数据存入product1表中
-- CREATE DEFINER [用户名] PROCEDURE 函数名
CREATE DEFINER=`root`@`localhost` PROCEDURE `NewProc`()
BEGIN
-- 定义v_t参数
DECLARE v_t int ;
-- 定义v_PROD_ID参数
DECLARE v_PROD_ID VARCHAR(64);
-- 定义product1_cursor游标
DECLARE product1_cursor CURSOR FOR SELECT PROD_ID FROM product1;
-- 打开游标
OPEN product1_cursor;
-- Loop循环
LOOP
-- 根据游标,取id号到变量中
FETCH product1_cursor INTO v_PROD_ID;
-- 查询是否有数据
select COUNT(0) into v_t from product where PROD_ID = v_PROD_ID;
-- 如果有则删除
IF v_t > 0 THEN
delete from product where PROD_ID = v_PROD_ID;
commit;
-- insert into product select * from product1 where PROD_ID = v_PROD_ID;
-- commit;
END IF;
-- 将product1表中对应的数据插入
insert into product select * from product1 where PROD_ID = v_PROD_ID;
commit;
-- 结束循环
END LOOP;
-- 关闭游标
CLOSE product1_cursor;
END