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 |
Dear All, Question for this Week Find out possible error(s) (either at compile time or at runtime) in the following PL/SQL block. State the reason(s) and correct the errors. Declare Cursor C1 is select ename, sal, comm from emp; Begin For i in C1 Loop If i.comm between 299 and 999 then Dbms_output.put_line(i.Ename || ‘ ** Good Commission’); Elsif i.comm > 999 then Dbms_output.put_line(i.Empno || ‘ ** Very Good Commission’); close C1; Else Dbms_output.put_line(i.Ename || ‘ ** ’ ||nvl(i.comm,‘O’)); End if; End Loop; End;
Is sql considered coding?
Can instead of triggers be used to fire once for each statement on a view?
what is meant by forward declaration in functions?
What is the use of pl/sql table?
How do you delete a table?
what is the difernece between named and anonymous pl/sql blocks??
SELECT category, type, AVG(price) FROM products GROUP BY category, type ORDER BY 1, 2 If there are three distinct categories in the "products" table, and each one has five different types, how many rows are returned by the query above? 1. 1 row 2. 3 rows 3. 5 rows 4. 8 rows 5. 15 rows
How many types of functions are there in sql?
What is PL/SQL Records?
HOW CAN I FIND MAX SAL ,ENAME FROM EMP TABLE.
what is meant by databases
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)