Answer Posted / ezhumalai
with cte
as
(
select Salary,row_number() over ( order by Salary asc)rnt from EMP
)select * from cte where rnt=2
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
How do you edit data in pgadmin?
How do I connect to postgresql access?
Does creating a foreign key create an index?
What is serial data type in postgresql?
What language is postgresql written in?
How do you remove a foreign key constraint?
What is a function in postgresql?
What is an example of a schema?
How big can postgres get?
What are the advantages of postgresql?
How do you create a table in pgadmin 4?
What is the latest version of postgresql?
Does postgresql have a gui?
What is the purpose of foreign key constraints?
What is postgresql dba?