DESCRIBE [EXTENDED | FORMATTED] [db_name.]table_name [PARTITION partition_spec];
[EXTENDED | FORMATTED]
: Specify the format of the table.table_name
: Table name[PARTITION partition_spec]
: List of partitions in the tableDESCRIBE tbl;DESCRIBE FORMATTED tbl PARTITION (date_id = '2019-01-07');
Was this page helpful?