0
環在Oracle過程我想借此輸入for循環它是可以或不可以對於Oracle過程
DECLARE
x NUMBER := 0;
BEGIN
FOR i IN 1..10 LOOP
//Here i want to take 10 time input from user and print its sum. It is possible or not
END LOOP;
COMMIT;
END;