我将我的redshift连接到dbeaver,并且在我的表上运行select *时,我进入了时间列-1541079087394,这是bigint。我如何才能运行查询以获取带有日期和时间的时间戳记,如在kibana中-2019年5月20日,10:49:16.949。
答案 0 :(得分:1)
时间列不是bigint,但是您可以使用此代码方法将该整数转换为时间戳记
select timestamp 'epoch' + your_bigint_col/1000 * interval '1 second' AS your_column_alias
from your_table
这是假设您的bigint是时代,您没有说。