欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Mysql元数据如何生成Hive建表语句注释脚本详解

程序员文章站 2022-06-21 08:35:53
前言 本文主要给大家介绍了关于mysql元数据生成hive建表语句注释脚本的相关内容,分享出来供大家参考学习,下面话不多说了,来一起看看详细的介绍: 最近在将数据从my...

前言

本文主要给大家介绍了关于mysql元数据生成hive建表语句注释脚本的相关内容,分享出来供大家参考学习,下面话不多说了,来一起看看详细的介绍:

最近在将数据从mysql 等其他关系型数据库 抽取到hive 表中时,需要同步mysql表中的注释,以下脚本可以生成hive表字段注释修改语句。

注:其他关系型数据库如:oracle 可以通过相同的思路,读取元数据,修改脚本语法实现。

使用:

在mysql元数据库:information_schema 中执行以下语句

select concat('alter table ', table_name, ' change column ', column_name, ' ', column_name, ' ', data_type, ' comment ', '"', column_comment, '"', ';')
from (select table_name, column_name, case when data_type = 'varchar' then 'string' when data_type = 'int' then 'int' when data_type = 'tinyint' then 'tinyint' when data_type = 'decimal' then 'double' when data_type = 'datetime' then 'string' when data_type = 'timestamp' then 'string' when data_type = 'float' then 'double' when data_type = 'double' then 'double' when data_type = 'bigint' then 'bigint' end as data_type, column_comment
from columns
where table_name = 'o_oms_statistic_profit'
) t;

在将数据从mysql 等其他关系型数据库 抽取到hive 表中时,需要同步mysql表中的注释,以下脚本可以生成hive创建表语句。只是生成了hive表主要的字段信息,其他信息需要手工添加。

在mysql元数据库:information_schema 中执行以下语句

select concat('create table ', table_name, '(', substring(column_info, 1, length(column_info) - 1), ')', ' comment ', '"', table_comment, '"', ';')
from (select table_name, table_comment, group_concat(concat(column_name, ' ', data_type, ' comment ', '"', column_comment, '"')) as column_info
from (select t1.table_name, case when t2.table_comment = null then t1.table_name else t2.table_comment end as table_comment, column_name, case when data_type = 'varchar' then 'string' when data_type = 'int' then 'int' when data_type = 'tinyint' then 'tinyint' when data_type = 'decimal' then 'double' when data_type = 'datetime' then 'string' when data_type = 'timestamp' then 'string' when data_type = 'float' then 'double' when data_type = 'double' then 'double' when data_type = 'bigint' then 'bigint' end as data_type, case when column_comment = null then column_name else column_comment end as column_comment
from columns t1 join tables t2 on t1.table_name = t2.table_name
where t1.table_name = 'o_oms_statistic_profit'
) t3
group by table_name, table_comment
) t4;

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作能带来一定的帮助,如果有疑问大家可以留言交流,谢谢大家对的支持。