If there are 1 to 100 numbers in a table and in that 100
numbers some 10 numbers are deleted.I want to find out the
missing numbers between 1 to 100 by pl/sql how?
Answer Posted / subrat ray
SQL> desc numtab;
Name Null? Type
------ ------- ------
X NUMBER(4)
declare
v_num number(2);
cursor c1 is select rownum num from all_tables where rownum<=100
minus
select x num from numtab;
begin
open c1;
loop
fetch c1 into v_num;
exit when c1%notfound;
dbms_output.put_line(v_num);
end loop;
close c1;
end;
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is auto increment?
what is a join? : Sql dba
What is dcl in sql?
Define implicit and explicit cursors.
Is sqlexception checked or unchecked?
Can we alter stored procedure?
Describe types of sql statements?
Explain what is a subquery ?
how to drop an existing table in mysql? : Sql dba
Is sql database free?
How do I view stored procedures?
What is the trigger in sql?
What are the advantages of normalization?
Is sql a backend?
Which table is left in left join?