Concept Flow - Hash indexes
Start: Query with search key
Apply hash function to key
Compute hash value (bucket address)
Access bucket in hash index
Check bucket for matching record
Yes No
Return record
The flow shows how a hash index uses a hash function on a search key to find the bucket address, then accesses that bucket to find the matching record or report it missing.