Can anyone please tell me how to find out the N th largest entry from a table in Oracle?
Like for largest we can use MAX(column_name) i
Try this:
SELECT DISTINCT TOP 3 id,[Password] FROM Users_changepassword WHERE [UserId] = 3 ORDER BY id DESC