# HVALS Returns all values in the hash stored at `key`. ## Examples redis> HSET myhash field1 "Hello" (integer) 1 redis> HSET myhash field2 "World" (integer) 1 redis> HVALS myhash 1) "Hello" 2) "World" Give these commands a try in the interactive console: HSET myhash field1 "Hello" HSET myhash field2 "World" HVALS myhash ## Return information {{< multitabs id="hvals-return-info" tab1="RESP2" tab2="RESP3" >}} [Array reply](../../develop/reference/protocol-spec#arrays): a list of values in the hash, or an empty list when the key does not exist -tab-sep- [Array reply](../../develop/reference/protocol-spec#arrays): a list of values in the hash, or an empty list when the key does not exist.