Chinaunix首页 | 论坛 | 博客
  • 博客访问: 4179758
  • 博文数量: 240
  • 博客积分: 11504
  • 博客等级: 上将
  • 技术积分: 4277
  • 用 户 组: 普通用户
  • 注册时间: 2006-12-28 14:24
文章分类

全部博文(240)

分类: Mysql/postgreSQL

2007-07-17 16:50:15

问题:
如果一条记录存在,不插入,如果不存在则插入
 
SQL SERVER 中:
create table b(id int)
insert into b select 1
union all
select 2
union all
select 3
union all
select 4

if not exists(select id from b where id=5)
insert into b(id) values(5)
===
MYSQL中没有简单的语句,只能用存储过程实现
 
MYSQL:
create table b(id int);
insert into b(id) values(1),(2),(3),(4);
 
DELIMITER $$
DROP PROCEDURE IF EXISTS `test`.`sp_b`$$
CREATE PROCEDURE `test`.`sp_b`(in i_id int)
    BEGIN
    declare cnt int;
    select count(1) from b where id=i_id into cnt;
    if cnt = 0 then
       insert into b select i_id;
    end if;
    END$$
DELIMITER ;
阅读(2740) | 评论(2) | 转发(0) |
给主人留下些什么吧!~~

yueliangdao06082008-10-30 13:03:57

是的,不过MySQL的语句一定得在SP里面才可以执行。

chinaunix网友2008-10-30 10:38:12

在mysql5.1.22以上的版本,都支持 exists 的用法的.