查看所有数据库show databases;
使用指定数据库use 数据库名称;
查看所有表show tables;
显示数据库信息desc database 数据库名称;
显示数据库详细信息desc extended database 数据库名称;
修改数据库的属性alter database 数据库名称 set dbproperties('createtime'='20220204');
删除空数据库drop database if exists 数据库名称;
强制删除非空数据库drop database 数据库名称 cascade;
建表CREATE [EXTERNAL] TABLE IF NOT EXISTS table_name [(col_name data_type [COMMENT col_comment], ...)] COMMENT table_comment [PARTITIonED BY (col_name data_type [COMMENT col_comment], ...)] [CLUSTERED BY (col_name, col_name, ...) [SORTED BY (col_name [ASC|DESC], ...)] INTO num_buckets BUCKETS] [ROW FORMAT row_format] [STORED AS file_format] [LOCATION hdfs_path] [TBLPROPERTIES (property_name=property_value, ...)]
根据查询结果创建表create table if not exists 表名 as select * from 表名;
查询表类型desc formatted 表名;
将外部表数据上传至HDFSdfs -mkdir /目录名; dfs -put /datas/文件名 /目录名;
修改表结构为外部表alter table 表名 set tblproperties('EXTERNAL'='TRUE');
查询表类型desc formatted 表名;
重命名表ALTER TABLE table_name 表名 TO 新表名;
更新列ALTER TABLE table_name CHANGE [COLUMN] col_old_name col_new_name column_type;
增加或替换列ALTER TABLE table_name ADD|REPLACe COLUMNS (col_name data_type;
向表中装载数据load data [local] inpath '数据路径' [overwrite] into table 表名 [partition (partcol1=val1,…)];
values写法insert into table 表名 values ...;
根据查询结果插入数据insert overwrite table 表名 select * from 表名;