Use The Implicit cursor to Query The Department table information Where Deptno is 30.check,if no record was found then print "Record Was Not Found".Else Print Deptname And Ename.Dept table Have Dname Varchar2(20),Deptno Number,EnameVarchar2(20).Please Answer In 2 mins,with in Maximum 15 lines.
Answer Posted / swastik
declare
v_deptno number(2) := &gdeptno;
v_dname varchar2(20);
v_ename varchar2(20);
begin
select deptno, dname, ename into v_deptno, v_dname, v_ename
from dept
where deptno = v_deptno;
dbms_output.put_line(v_deptno|| ' '||v_dname||' '||v_ename);
exception
when no_data_found
then
dbms_output.put_line('record was not found');
end;
/
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
Give the order of sql select?
What is the difference between having clause and where clause?
How to execute a stored procedure?
What is a system versioned table?
What is the difference between union and union all command?
What is meant by user defined function?
What is scalar and vector?
What is the purpose of cursors in pl/sql?
What is cascade in sql?
Which is faster joins or subqueries?
how can we find the number of rows in a table using mysql? : Sql dba
What is identity column in sql server?
Is a secondary key the same as a foreign key?
Can we use pl sql in mysql?
What is pragma in pl sql?