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 / dipanshu saini
select level from dual connect by level<=(select max(seq_no) from test_tab)
minus
select seq_no from test_tab;
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is out parameter used for eventhough return statement can also be used in pl/sql?
what is a database lock ? : Sql dba
How do I quit sql?
What is where clause in sql?
What is the use of nvl function?
What are the types of keys?
How many types of privileges are available in sql?
What is the purpose of design view?
What are the triggers associated with image items?
What is posting?
What is case function?
what are the different type of sql's statements ? : Sql dba
List the various privileges that a user can grant to another user?
What version is sql?
How can we solve sql error: ora-00904: invalid identifier?