I ran a query "
SELECT customer.descriptive_name,
campaign.name, metrics.cost_micros, campaign.labels FROM campaign WHERE segments.date BETWEEN '2021-05-01' AND '2021-05-31"
This is the result of that query when written to a csv file:

I then ran a different query "SELECT campaign_label.campaign, campaign_label.label, campaign_label.resource_name FROM campaign_label" thinking I would get the ID and then a label then I could perform a join. This also just gave me a bunch of campaign ids and label ids.
How can I get the a list of which Label ids correspond to which label names?