How do I use the SQL statement to find the nth value in a column?
Select * from (select t. *, rank () over (Order by t.emp_no) Rank from Cus_Emp_basic T) c where c.rank = 2;