How to fetch last n rows only in DB2?

How to fetch last n rows only in DB2? I Know there is a command in SQL to fetch first n rows only SELECT Employee_no, Salary FROM Employee-table The above query will fetch first 10 rows from Employee-table But if I have to fetch last 10 rows from a table, I tried using   “FETCH LAST 10 ROWS only” But this command gave me error  SQLCODE = -104, ERROR:  ILLEGAL SYMBOL “LAST”. SOME SYMBOLS THAT MIGHT BE LEGAL ARE: FIRST                                        “; ; ; ;