Hashes Hdel
# Redis Hdel Command
[!(#) Redis Hashes](#)
The Redis Hdel command is used to delete one or more specified fields from a hash table key. Fields that do not exist are ignored.
### Syntax
The basic syntax for the Redis Hdel command is as follows:
redis 127.0.0.1:6379> HDEL KEY_NAME FIELD1.. FIELDN
### Available Since
>= 2.0.0
### Return Value
The number of fields that were successfully deleted, excluding the ignored fields.
### Example
redis 127.0.0.1:6379> HSET myhash field1 "foo"(integer) 1 redis 127.0.0.1:6379> HDEL myhash field1 (integer) 1 redis 127.0.0.1:6379> HDEL myhash field2 (integer) 0
[!(#) Redis Hashes](#)
YouTip