Ordering is only applicable to result sets, not tables. Specify an order by clause in your select statement.
select * from products
order by case when item_no = 322 then 0 else 1 end
Concepts such as first or last does not have any meaning in a relational database.