请问为什么SQL查询的时候应该有结果但是显示的是0行

代码如下
SELECT EventCode,AVGTONE,count(*)as count
FROM [Gdelt].[dbo].[Merged1]
where Actor1CountryCode]= ' USA '
GROUP BY EventCode,AVGTONE
ORDER BY EventCode
但是结果是0行

img

图片上显示肯定不是0条请问为什么

把表Merged1的 Actor1CountryCode='USA' 的EventCode,AVGTONE的记录都贴出来。
或者表Merged1全部字段记录贴出来。

merged1的全部字段如下GLOBALEVENTID SQLDATE MonthYear Year FractionDate Actor1Code Actor1Name Actor1CountryCode Actor1KnownGroupCode Actor1EthnicCode Actor1Religion1Code Actor1Religion2Code Actor1Type1Code Actor1Type2Code Actor1Type3Code Actor2Code Actor2Name Actor2CountryCode Actor2KnownGroupCode Actor2EthnicCode Actor2Religion1Code Actor2Religion2Code Actor2Type1Code Actor2Type2Code Actor2Type3Code IsRootEvent EventCode EventBaseCode EventRootCode QuadClass GoldsteinScale NumMentions NumSources NumArticles AvgTone Actor1Geo_Type Actor1Geo_FullName Actor1Geo_CountryCode Actor1Geo_ADM1Code Actor1Geo_Lat Actor1Geo_Long Actor1Geo_FeatureID Actor2Geo_Type Actor2Geo_FullName Actor2Geo_CountryCode Actor2Geo_ADM1Code Actor2Geo_Lat Actor2Geo_Long Actor2Geo_FeatureID ActionGeo_Type ActionGeo_FullName ActionGeo_CountryCode ActionGeo_ADM1Code ActionGeo_Lat ActionGeo_Long ActionGeo_FeatureID DATEADDED SOURCEURL
实际上是用的谷歌的gdelt数据,但是因为谷歌每月查询有限制,所以打算把数据下载下来然后放到sql server上规避查询的限制
然后把数据导入进去之后用原来的代码但是查不出数据来
刚开始用sql server2008r2还不太会
记录先放上一部分,由于导入的数据量比较大,因此先截图了一小部分,但是足以说明问题

img

检查一下Actor1CountryCode列值是否有空格

EventCode,AVGTONE 这两个字段是空值吧