COLUMN NOT FOUND, Athena Query

0

COLUMN_NOT_FOUND: line 1:40: Column 'e' cannot be resolved or requester is not authorized to access requested resources This query ran against the "logs" database, unless qualified by the query, the query i'm writing is , select * from logs where type="E"; There is a column named type , in the table

AWS
質問済み 1年前3334ビュー
3回答
1
承認された回答

Try putting single quotes around the E - so

select * from logs where type='E';

HTH

Nick

AWS
Nick
回答済み 1年前
1

select * from logs where "type"='E'

profile pictureAWS
AWS_TAM
回答済み 1年前
0

Thanks a lot, I've been running in circles trying to troubleshoot this issue! Any idea about the underlying cause?

回答済み 9ヶ月前

ログインしていません。 ログイン 回答を投稿する。

優れた回答とは、質問に明確に答え、建設的なフィードバックを提供し、質問者の専門分野におけるスキルの向上を促すものです。

質問に答えるためのガイドライン

関連するコンテンツ