我在AWS S3中有CSV文件,如下所示:
"m.deviceid";"m.eventtype"
"TestDevice";"TestEvent"
如果我使用S3选择如下:表达式:
SELECT *
FROM S3Object s
WHERE s.\"m.eventtype\" LIKE \"TestEvent\"'
我将收到消息“”文件中缺少查询中的某些标题。请检查文件,然后重试。“
S3 Select文档没有清楚地表明支持的CSV标题中是否有点?
这些工作还可以:
select * from s3object s where s."m.eventtype" = 'TestEvent'
select * from s3object s where s."m.eventtype" like '%Test%'