I've read Partitioning data in Athena, however it is not clear how to make partitions for a table, when S3 has the following structure:
aws s3 ls s3://xxx-s3-zzz-datalake-prod/yyy/2022/09/
PRE 01/
PRE 02/
PRE 03/
PRE 04/
PRE 05/
PRE 06/
etc...
How could I create partition for such structure, is it possible? Or should I rename it to
aws s3 ls s3://xxx-s3-yyy-datalake-prod/zzz/2022/09/
PRE day=01/
PRE day=02/
PRE day=03/
etc...
and then add PARTITIONED BY (day int) ?