PGSQL写SQL 脚本格式

sql脚本


do $$
	declare  i int default 0;
begin
	
  select  count(1) into i from fab_flow_config_main ffcm ;
 
    if i>0 then	

	  for i in 1..5 loop
		  raise notice '%', i;
	  	  i=5;
	  end loop;

     end if;
	   
end;
$$

注意点

1.打印输出前面需要加上’%’
2.行代码后面需要加上符号[;]

你可能感兴趣的:(数据库,sql,数据库)