@keys = sort keys %hash;    # sorted by key
@keys = sort {
  $hash{$a} cmp $hash{$b}
  } keys %hash;       # and by value