如何将hive表内bigint的字符串变为string
时间: 2024-05-03 15:16:32 浏览: 139
hive中将string数据转为bigint的操作
5星 · 资源好评率100%
您可以使用Hive内置函数 `cast` 将 `bigint` 类型的数据转换为 `string` 类型。具体语法如下:
```
select cast(bigint_column as string) from your_table;
```
其中,`bigint_column` 是您需要转换的 `bigint` 类型的列名,`your_table` 是您需要查询的表名。这条语句将会将 `bigint_column` 中的所有数据转换为 `string` 类型,并返回查询结果。
阅读全文