AWS Athena Tips集

json 配列

select ar[0].x from tableでは、

INVALID_FUNCTION_ARGUMENT: SQL array indices start at 1

select ar[1].x from tableでは、

INVALID_FUNCTION_ARGUMENT: Array subscript out of bounds

select elemnt_at(ar,1).x from tableとすることで、検索できました。

文字列の連結

Athenaでは、「||」で連結できます。