#standardSQL # Get the correlation between one event parameter (in this case, the "score" parameter of the # "round_completed" event and a user property (in this case, the "xp" user property, converted # from a string to an int). SELECT corr(score, xp) FROM ( SELECT event_name, param.value.int_value AS score, CAST(user_prop.value.string_value AS int64) AS xp FROM `.events_`, UNNEST(event_params) AS param, UNNEST(user_properties) AS user_prop WHERE event_name = "round_completed" AND param.key = "score" AND user_prop.key = "xp" )