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
How do we accept inputs from user during runtime?
What is oracle pl sql developer?
Why is there a need for sqlcode and sqlerrm variables?
what does myisamchk do? : Sql dba
How can we avoid duplicating records in a query?
how many triggers are allowed in mysql table? : Sql dba
Can we have two clustered index on a table?
What is nvl?
How do you change a value in sql?
what are the limitations of identity column? : Transact sql
What is the difference between Union and Union all. Which is faster.
What is the syntax and use of the coalesce function?
How do I remove sql plus from windows 10?
Does sql between include endpoints?
what is 'trigger' in sql? : Sql dba