Is it possible to restrict queries to a certain Amazon Athena database, so that queries are run only against that database?
I imagine something like
jdbc:awsathena://athena.us-east-1.amazonaws.com:443/databasename
, so that queries like
SELECT * FROM exampletable
are possible. Instead of
SELECT * FROM databasename.exampletable
Grateful for any hints.