Write a query to get last 10 records from the table.
Answer Posted / siddharthapenchala
select * from <TN>
minus
select * from <TN>
where
rownum <= (select count(*) - &n from <TN>)
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is trigger point?
Do we need to rebuild index after truncate?
What is the difference between function, procedure and package in pl/sql?
What is data types in sql?
What are the different operators available in sql?
Differences between Oracle 9i and 10g (Probably in terms of SQL and PL/SQL)?
What is difference between nchar and nvarchar?
How to select 10 records from a table?
What is the order of sql select?
What is sql keyword?
What is sql profiler in oracle?
Can we use ddl commands in pl sql?
What is the usage of when clause in trigger?
Can we declare a column having number data type and its scale is larger than pricesionex: column_name number(10,100),column_name numbaer(10,-84)
What is the left table in sql?