Write a query to get last 10 records from the table.
Answers were Sorted based on User's Feedback
Answer / hussain
select * from emp minus select * from emp where rownum<=
(select count(*)-10 from emp);
Is This Answer Correct ? | 0 Yes | 3 No |
SELECT CNUM,FNAME, DEPTNO
FROM COMPANY
WHERE CNUM <= 10;
Is This Answer Correct ? | 3 Yes | 12 No |
what is query cache in mysql? : Sql dba
what is cross join? : Sql dba
What is not in sql?
What is t sql used for?
how to convert character strings to numeric values? : Sql dba
What is the difference between between and in condition operators?
What are triggers, and when would you use them?
what tools available for managing mysql server? : Sql dba
If a procedure within a package is invalidated whether the entire package will be invalid and has to be recompiled again?
What is clustered, non-clustured and unique index. How many indexes can be created on a table ?
What is a 'instead of trigger'?
What are the different datatypes available in PL/SQL?