I want to search GDELT data using big query since the analysis service on gdelt official website is updating. So the idea is I need to select data with specific country actors (eg. Actor1 is US and Actor2 is China).
I tried something like this:
SELECT
*
FROM `gdelt-bq.full.events`
WHERE Year >= 2019
AND Actor1CountryCode= 'US'
AND Actor2CountryCode= 'CN'
but it says no data to display.
I am fresh new to sql so I would appreciate it if anyone could help out!