有没有办法改变 QuestDB 中列的类型?
Is there a way to change the type of a column in QuestDB?
我有一个带有传感器数据的 table,我想更改列的类型,有快速的方法吗?
这是一个计划中的功能,还有一个 issue tracking the status。
如果这是 suitable 解决方法,您可以创建一个新的 table 并将列值转换为另一种类型:
CREATE TABLE new_table AS(SELECT * FROM existing_table),
cast(long_value AS INT);
behavior of casts 将适用。
我有一个带有传感器数据的 table,我想更改列的类型,有快速的方法吗?
这是一个计划中的功能,还有一个 issue tracking the status。
如果这是 suitable 解决方法,您可以创建一个新的 table 并将列值转换为另一种类型:
CREATE TABLE new_table AS(SELECT * FROM existing_table),
cast(long_value AS INT);
behavior of casts 将适用。