Oracle-03多表查询及编程

时间:2023-05-15 08:49:59
【文件属性】:

文件名称:Oracle-03多表查询及编程

文件大小:256KB

文件格式:PDF

更新时间:2023-05-15 08:49:59

Oracle 数据库

--使用PLSQL输出三角形,只要是三个角 declare m number := 10; begin for x in reverse -m..m loop for y in -m..m loop if abs(y) + abs(x) <= m and x>=0 then dbms_output.put('*'); else dbms_output.put(' '); end if; end loop; dbms_output.new_line(); end loop; end;


网友评论