Skip to content

Instantly share code, notes, and snippets.

@MdGolam-Kibria
Created August 22, 2024 08:51
Show Gist options
  • Save MdGolam-Kibria/7aad41cc115b8b93552cde06f0603683 to your computer and use it in GitHub Desktop.
Save MdGolam-Kibria/7aad41cc115b8b93552cde06f0603683 to your computer and use it in GitHub Desktop.
get 3rd high salary using ORACLE query
SELECT n.TOTAL_BBL_AMT FROM (SELECT TOTAL_BBL_AMT
FROM CORP_FILE_UPLOAD_INFO
order by TOTAL_BBL_AMT DESC) n offset 3 rows fetch next 1 rows only;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment