Or I suppose you can use /hdel to get rid of the previous entry and then overwrite with a new set of item and data:

Code:
alias rewrite {
  if (!$hget(Test)) hadd -m Test 1 2
  hdel -sw Test 1 2
  hadd Test 3 4
  hdel -sw Test 3 4
  hadd Test 5 6
}