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

3 Answers
1
Accepted Answer

Try putting single quotes around the E - so

select * from logs where type='E';

HTH

Nick

AWS
answered 2 years ago
1

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

profile pictureAWS
answered 2 years ago
0

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

answered 2 years ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions

Relevant content