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 the difference between unique and primary key constraints?
Can we use pl sql in mysql?
How do I upgrade sql?
What is sql performance tuning?
What is sql partition?
How do you remove duplicates without using distinct in sql?
How delete a row in sql?
Can sql developer connect to db2?
how to escape special characters in sql statements? : Sql dba
How many sql statements are used? Define them.
What is multiple partition?
What does partition by mean in sql?
Explain cursor types?
What packages are available to pl/sql developers?
What are the types of operators available in sql?