📅  最后修改于: 2020-12-03 03:42:50             🧑  作者: Mango
在Hive中,数据库被视为表的目录或名称空间。因此,我们可以在数据库中维护多个表,在每个表中都分配了唯一的名称。 Hive还提供了一个名称为default的默认数据库。
hive> show databases;
在这里,我们可以看到Hive提供的默认数据库的存在。
hive> create database demo;
因此,创建了一个新的数据库。
hive> show databases;
hive> create a database if not exists demo;
hive>create the database demo
>WITH DBPROPERTIES ('creator' = 'Gaurav Chawla', 'date' = '2019-06-03');
hive> describe database extended demo;