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
Is and as keyword in pl sql?
What is set serveroutput on?
What is natural join in sql?
What is a loop in sql?
Does db2 use sql?
How do you delete data from a table?
What is primary key in db?
How to rename a column in the output of sql query?
What is insert command in sql?
What is query syntax?
Is trigger a stored procedure?
How to add, remove, modify users using sql?
what are the limitations of mysql in comparison of oracle? Mysql vs. Oracle. : Sql dba
How does one use sql*loader to load images, sound clips and documents? : aql loader
What is the largest value that can be stored in a byte data field?