Hello, I have a problem with data in BigQuery.
I have counted how many products had custom label X yesterday, and there are huge differences in quantities between BigQuery and Merchant Center. For example in Merchant Center I have 500 products that has custom label 2 = X, but in BigQuery only 300 products. Could you please help me find a solution? I need the same data. That label updates every day in Merchant Center. Below is the SQL I use to count:
Select custom_labels.label_2, count(product_id) from Merchant.Products
Where
DATE(product_data_timestamp) = DATE_SUB(CURRENT_DATE(), INTERVAL 2 DAY)
group by custom_labels.label_2