Created
September 6, 2017 13:59
-
-
Save iconara/a3fa2464ee2ff4fc16d426f1b1a79841 to your computer and use it in GitHub Desktop.
Athena cheat sheet
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Discovers all partitions of a table if they use Hive's partitioning format (e.g. partition0=abc/partition1=def) | |
MSCK REPAIR TABLE tablename; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- This lists all partitions of a table. The Presto version, SHOW PARTITIONS FROM tablename, does not work. | |
SHOW PARTITIONS tablename; | |
-- Returns: | |
-- partition0=abc/partition1=def | |
-- partition0=ghi/partition1=jkl |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment