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..?
Answers were Sorted based on User's Feedback
Answer / rajesh venati
Actually i didn't get u r question exactly, As per above
question, it will also work
select page_no from book where page_no not in(1,101);
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / 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 |
Answer / 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 |
Answer / tarun
select page_no from book1 where page_no between 2 and 100 or
page_no between 102 and 200
| Is This Answer Correct ? | 3 Yes | 0 No |
How do you add a column to a table?
What is sql mysql pl sql oracle?
How does sql store data?
give the syntax of grant and revoke commands? : Sql dba
Are sql connections encrypted?
How do you update a sql procedure?
Can we call a function containing dml statements in a select query?
What are the advantages of stored procedure?
Does pdo prevent sql injection?
What is rtm in testing?
can i call procedure in package
what is blob? : Sql dba
Oracle (3259)
SQL Server (4518)
MS Access (429)
MySQL (1402)
Postgre (483)
Sybase (267)
DB Architecture (141)
DB Administration (291)
DB Development (113)
SQL PLSQL (3330)
MongoDB (502)
IBM Informix (50)
Neo4j (82)
InfluxDB (0)
Apache CouchDB (44)
Firebird (5)
Database Management (1411)
Databases AllOther (288)