
Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
SQL code and Programmable language
Typology: Study Guides, Projects, Research
1 / 1
This page cannot be seen from the preview
Don't miss anything!

write a plsql code to calculate the area of circle whose readius is less than 5
set serveroutput on declare radius float:= 1.0; area float; begin dbms_output.put_line('AREA OF CIRCLE'); WHILE radius<=5 LOOP area:=3.14radiusradius; dbms_output.put_line('The area of circle is '||area); radius:=radius+1; insert into Store_Circle_Area(radius,area) values(radius,area); END LOOP; end;