I would like to filter out null values from a specific column in this case "Account" on a union query how can i do this?
The query that I am working on is this:
SELECT
Account,
Campaign_name,
Ad_group_name,
Date,
Keyword,
Impressions,
Clicks,
Cost__GBP_,
Conversions
FROM
table1
UNION ALL
SELECT
Account,
Campaign_name,
Ad_group_name,
Date,
Keyword,
Impressions,
Clicks,
Cost__GBP_,
Conversions
FROM
table2
Someone can help me in this? Thanks