IF条件
declare
cursor s isselect version from city_server t;
s_ city_server.version%type;
begin
open s;
fetch s into s_;
if s_>2
then
DBMS_OUTPUT.put_line(s_);
end if;
close s;
end;
LOOP循环
2024-01-11 21:21:52
IF条件
declare
cursor s isend;
LOOP循环
下一篇:SQL 的join 区别