Back to Yugabyte Db

HEXISTS

docs/content/stable/yedis/api/hexists.md

2026.1.0.0-b29843 B
Original Source

Synopsis

`HEXISTS key field

This is a predicate to check whether or not the given field exists in the hash that is specified by the given key.

  • If the given key and field exist, 1 is returned.
  • If the given key or field does not exist, 0 is returned.
  • If the given key is associated with non-hash data, an error is raised.

Return value

Returns existence status as integer, either 1 or 0.

Examples

sh
$ HSET yugahash area1 "America"
1
sh
$ HEXISTS yugahash area1
1
sh
$ HEXISTS yugahash area_none
0

See also

hdel, hget, hgetall, hkeys, hlen, hmget, hmset, hset, hincrby, hstrlen, hvals