suppose u hav 1 book with set...page 1-100 n 101 -200
now print page from 2-100 n 102 -200...
how we will do..?
Answer Posted / tamilarasan
If you run this query select page_no from book1 where mod
(page_no,100) != 1
in a single column u will get the page nos as follows
RESULT
-------
2.
...
100
102
...
200
Is this the one you want?
| Is This Answer Correct ? | 4 Yes | 1 No |
Post New Answer View All Answers
How do I remove all records from a table?
What is bulk collect in pl sql?
What does the sign mean in sql?
Why should I use postgresql?
Can we create clustered index without primary key?
What is character functions?
What is program debugging?
What is a sql select statement?
What is full join?
How can a function retun more than one value in oracle with proper example?
Why do we use procedures in pl sql?
How do you write an index?
what is the command line end user interface - mysql? : Sql dba
What is a unique key and primary key and foreign key?
Is it possible to create the following trigger: before or after update trigger for each row?