I want to know last five transactions or records from emp
table, from now?
Answers were Sorted based on User's Feedback
Answer / 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 |
Tell me what a package consists of.
if table named a is there and 4 records are there then how to swap (1 and 3) and (2 and 4) records at a time
How to look at the current sql*plus system settings?
what is the difference between char and varchar data types? : Sql dba
what is SCALAR Queries?
is it necessary to write group by and order by clause together
write an sql query to get third maximum salary of an employee from a table named employee_table. : Sql dba
What is difference between table and view?
Can we use the cursor's to create the collection in PL/SQL?
what is the difference between implicit conversions and explicit conversions?
HP Interview -2016 Unix 1) grep command in unix 2) what is set command
What is the starting oracle error number?
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)