服务器之家:专注于服务器技术及软件下载分享
分类导航

Mysql|Sql Server|Oracle|Redis|MongoDB|PostgreSQL|Sqlite|DB2|mariadb|Access|数据库技术|

服务器之家 - 数据库 - Sql Server - hive中将string数据转为bigint的操作

hive中将string数据转为bigint的操作

2021-01-16 16:49曳落 Sql Server

这篇文章主要介绍了hive中将string数据转为bigint的操作,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧

使用 CAST 函数将 STRING 转为 BIGINT:

SELECT CAST('00321' AS BIGINT) FROM table;

As a BIGINT it will show on the screen and in delimited text files as 321.

参考:Hive - Converting a string to bigint

补充知识:hivebigint和varchar字段做关联,关联数据错误的解决方法

把bigint和varchar都隐式转换成String类型的就可以关联出正确的结果了

cast(t1.PARTY_NUM as string)=cast(t12.customerId as string)

以上这篇hive中将string数据转为bigint的操作就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。

原文链接:https://blog.csdn.net/xieganyu3460/article/details/82780115

延伸 · 阅读

精彩推荐