我在AWS S3中具有CSV文件,如下所示:
"m.deviceid";"m.eventtype"
"TestDevice";"TestEvent"
如果我使用S3,请选择以下内容: 表达式:
SELECT *
FROM S3Object s
WHERE s.\"m.eventtype\" LIKE \"TestEvent\"'
我将收到消息“”,文件中缺少查询中的某些标头。请检查文件,然后重试。”
S3 Select文档不能清楚地表明CSV标头中是否包含点?
答案 0 :(得分:0)
这些工作正常:
select * from s3object s where s."m.eventtype" = 'TestEvent'
select * from s3object s where s."m.eventtype" like '%Test%'