0 votes
in Big Data | Hadoop by
Drop command in Hive

1 Answer

0 votes
by
  1. DROP Database
drop database <database name>;
  1. DROP Table
hive> DROP TABLE IF EXISTS <tablename>;
  1. DROP View
DROP view <viewname>;
  1. DROP Index
DROP INDEX <index_name> ON <table_name>;

Related questions

0 votes
asked Apr 1, 2020 in Big Data | Hadoop by AdilsonLima
0 votes
asked Apr 3, 2020 in Big Data | Hadoop by Tate
...