Verify that You are not a Robot
Are you a Robot?
Generating Link... Please Wait
I am not a Robot
آخر المشاركات
PL/SQL Program to Check Number is Odd or Even Code declare n number :=:n; begin if mod(n,2)=0 then dbms_output.put_line('number is eve…
Program to find largest of 2 numbers using PL/SQL Code DECLARE N NUMBER; M NUMBER; BEGIN N:=&N; --if : doesn't work use : …
PL/SQL Program to Find Greatest of Three Numbers Code declare a number := 10 ; b number := 12 ; c number := 5 ; begin dbms_output.put_line(…
Find the area and perimeter of right triangle in PL/SQL Code DECLARE -- declare variable side1, side2, -- base, height, area and perime…
PL/SQL program to display your name Code declare n number ; i number ; begin n:= &n; for i in 1..10 loop dbms_output.put_line(n||…
write a pl/sql program to generate fibonacci series Code declare -- declare variable first = 0 , -- second = 1 and temp of datatype numbe…