我要检查列名中是否存在条目。
但是每次我尝试使用“如果”或“如果存在”进行操作时,都会出现语法错误。
(从class101 WHERE name ='Peter'中选择1)
工作并返回“设置中的1行”
(从class101 WHERE名称='Peter123'中选择1)
工作并返回“空集”给我
现在,我想插入一些不存在的东西。
if not exists (select 1 from class101 where name = 'Peter123')
BEGIN
insert into class101 values ('Peter123')
END;
这给了我一个语法错误
我希望有人可以帮助我找到错误。
答案 0 :(得分:0)
从class101 WHERE name =“ Peter123”;中选择COUNT(*);
这将返回存在的Peter123的数量。
答案 1 :(得分:0)
列名必须用方括号括起来,因为它是sql中的保留字,因此请尝试:
IF NOT EXISTS (select 1 from class101 where [name] = 'Peter123')
BEGIN
INSERT INTO class101 VALUES ('Peter123')
END;
答案 2 :(得分:0)
您对该表的该列具有唯一的键约束。因此只能在该列中插入一个这样的值, 否则,如果您想通过sql单个命令来解决,
insert into class101 (select '''PETER''' from dual where not exists (select 1 from class101 where name like 'PETER'));
plsql的其他:
declare
l_flag varchar2(2) := 'N';
begin
select 'Y' into l_flag from class101 where name='PETER' and rownum=1;
if l_flag = 'Y'
then
insert into class101 values ('PETER');
end if;
exception
when no_data_found
then
null;
end;