标签: amazon-redshift
在亚马逊红移中,我想在时间字段中增加小时数
((System.Web.Http.HttpResponseException)context.Exception).Response.ReasonPhrase
答案 0 :(得分:3)
您可以使用 DATEADD Redshift函数,将“ h”,“ hr”或“ hrs”用作第一个参数。可以在here和here中找到此功能的文档。
假设您要创建一个新表来保存结果,此sql语句应该对您有用:
INSERT into new_table_name SELECT DATEADD(hr,hours_add,tt_time) FROM current_table_name;