Write a query to get last 10 records from the table.
Answer Posted / praveen biradar
select empno from (select empno from emp order by empno
desc) where rownum<=10 order by empno
Is This Answer Correct ? | 10 Yes | 6 No |
Post New Answer View All Answers
how to create a test table in your mysql server? : Sql dba
The in operator may be used if you know the exact value you want to return for at least one of the columns.
How do I send sql query results to excel?
What is a design view?
What is offset and limit in sql?
how to enter characters as hex numbers? : Sql dba
Can we use insert statement in function?
Why do we need pl sql?
What are different types of tables in sql?
Why do we use partitions in sql?
what are properties of a transaction? : Sql dba
Is sql port 1433 encrypted?
How to revise and re-run the last sql command?
how to convert numeric values to character strings? : Sql dba
What is acid property in a database?