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
Say you have table with column "page_no" starts from 1 to
200.
Run the below query to get the desired answer
select page_no from book1 where mod(page_no,100) != 1
Is This Answer Correct ? | 4 Yes | 1 No |
Post New Answer View All Answers
What type of database is sql?
can a stored procedure call itself or recursive stored procedure? How much level sp nesting is possible? : Sql dba
How many types of indexes are there in sql?
What are the key differences between SQL and PL SQL?
Can we commit in trigger?
how to increment dates by 1 in mysql? : Sql dba
How to convert comma separated string to array in pl/sql?
How is data stored in sql?
Why do we need sharding?
What are pl sql data types?
how to fetch common records from two tables? : Sql dba
What is the difference between partitioning and sharding?
How global cursor can be declare with dynamic trigger ?
Can we create index on primary key?
How do I run a pl sql procedure in sql developer?