达梦执行if语句

错误语句:


if true then
select 1;
end if;


if true
begin
select 1;
end;

 

正确语句:用begin end包裹起来就可以了

begin
if true then
select 1;
end if;
end

begin
if true
begin
select 1;
end;
end

 

猜你喜欢

转载自blog.csdn.net/BillKu/article/details/143244381