The syntax works, but I had to figure out how to place it in my query.
If OK, I'd like to share an example on how to fit into an extended query:
select count(*) as count, inventory,
CASE WHEN inventory = 0 THEN 'empty' ELSE 'not empty' END as InventoryStatus
from mytable group by count, inventory