1 set serveroutput on
2 declare
3 num1 integer:=90;
4 num2 integer:=600;
5 begin
6 --条件结构
7 if num1>=num2 then
8 dbms_output.put_line('num1大于等于num2');
9 else
10 dbms_output.put_line('num1小于num2');
11 end if;
12
13 end;

相关文章:

  • 2021-07-01
  • 2021-10-13
  • 2021-08-19
  • 2022-01-24
  • 2021-12-05
  • 2021-10-28
  • 2021-08-20
猜你喜欢
  • 2021-09-23
  • 2021-11-20
  • 2021-10-19
  • 2021-12-26
  • 2021-10-11
  • 2021-12-11
相关资源
相似解决方案