What is a table partition?
No Answer is Posted For this Question
Be the First to Post Answer
What are different types of sql commands?
List the ways to get the count of records in a table?
What is oracle sql developer?
What are user defined stored procedures ?
What is sql character function?
What is the execution plan in sql?
how to get second highest salary in SQL(as/4000
What are advantages of Stored Procedures?
What are the built in functions of sql?
Does a primary key have to be a number?
How many joins can you have in sql?
how to retrieve last tree records from table? select *from emp where rownum > (select count(*)-3 from emp); i am using this query to get last three records from table but its not giving any output, so please tell me what is the error in this query.