When a row has a TRUE branch, CASE uses that branch result.
first TRUE wins
Read TRUE branch rows
The CASE expression takes a TRUE branch for 2 rows.
TRUE branch rows=2
CASE-expression examples are tiny finite row transforms with SQL-style TRUE/FALSE/UNKNOWN logic; SQL dialect completeness, type coercion, optimizer behavior, indexing, and product claims are out of scope.
Do not keep looking
After the first TRUE branch is chosen, later branches do not replace it.
stop at first TRUE
Summary
CASE is an ordered choice, not a vote across all branches.