I want to know last five transactions or records from emp
table, from now?
Answer Posted / prakash r
Hi,
Please try the below query
Table
------
create table TEMP_SEARCH
(
F1 VARCHAR2(100),
F2 VARCHAR2(100),
F3 VARCHAR2(100)
)
select * from TEMP_SEARCH
Rownum F1 F2 F3
-----------------------------
1 1 500 DES1
2 2 600 DES2
3 3 550 DES3
4 4 760 DES4
5 5 899 DES5
select * from temp_search
minus
(select * from temp_search where rownum < (select count(*) -
2 from temp_search))
This will give the last two transaction
| Is This Answer Correct ? | 2 Yes | 7 No |
Post New Answer View All Answers
what are the different type of sql's statements ? : Sql dba
What is denormalization in a database?
What is a unique constraint?
Name the operator which is used in the query for pattern matching?
What is left join in postgresql?
Mention what does the hierarchical profiler does?
how to select unique records from a table? : Sql dba
What is the use of double ampersand (&&) in sql queries? Give an example
What is oracle sql called?
In a distributed database system, can we execute two queries simultaneously?
How do you update a value in sql?
What is %s in sql?
How many joins can you have in sql?
What are the methods of filing?
What are different types of indexes?