我有一个 CSV 文件上传到 S3 存储桶。我想返回与字段的子字符串匹配的行Display
。什么是正确的 SELECT 语法?
这将返回 0 行:
"select * from s3object s where 'substring' in s.Display LIMIT 100"
谢谢你的帮助!
我有一个 CSV 文件上传到 S3 存储桶。我想返回与字段的子字符串匹配的行Display
。什么是正确的 SELECT 语法?
这将返回 0 行:
"select * from s3object s where 'substring' in s.Display LIMIT 100"
谢谢你的帮助!
找到了答案:
"select * from s3object s where s.Display LIKE '%substring%' LIMIT 100"
更多信息... S3 Select 使用Amazon Athena,它使用Presto作为其查询引擎。
值得注意的是,"SELECT * FROM s3object s WHERE 'substring' IN s.Display
只有s.Display
在ARRAY
.