Tables in a relational database does not have beginnings or ends. They are unordered sets so talking of putting a row in a specific position is nonsense.
You can specify that a result is ordered with respect to ceratin values when you retrieve data.
This is done by using an order by clause in a select specification.
select * from ogrish order by id desc
returns the data sorted with the highest id value first.