Examples
Given a list of fields that contain usernames, select the first one that is not
null
and display it in the
username
column
dataset = xdr_data
| fields actor_primary_username,
os_actor_primary_username,
causality_actor_primary_username
| alter username = coalesce(actor_primary_username,
os_actor_primary_username,
causality_actor_primary_username)