자바에서 pl/sql 함수를 호출하시겠습니까? 그래서 예약 테이블에 몇 개의 취소가 있는지 확인하는 기능이 있습니다. CREATE OR REPLACE FUNCTION total_cancellations RETURN number IS t_canc number := 0; BEGIN SELECT count(*) into t_canc FROM booking where status = 'CANCELLED'; RETURN t_canc; END; / sql에서 his를 실행하려면 다음을 사용합니다. set serveroutput on DECLARE c number; BEGIN c := total_cancellations(); dbms_output.put_line('Total no. of Cancellations: '..