在 Mosaic Decisions Flows 中,我可以看到有一个名为“$currentTime”的系统参数给出了当前时间戳。但这给出了 UTC 中的当前时间戳。我想将其转换为 CST 时区。有没有办法我可以做到这一点?
问问题
29 次
1 回答
1
是的,您可以使用转换节点中可用的Convert_Timezone函数。下面是它的语法。
CONVERT_TIMEZONE( column_name, ‘Timezone1’ , ‘Timezone2’);
Column_name – input time based column.
Timezone1 – the timezone the column data is in.
Timezone2 – the timezone in which the column data has to be converted in.
CONVERT_TIMEZONE (NOW(), ‘UTC’ , ‘CST6CDT’ )
->NOW()
会给你 currentTime 同样你可以使用 - SystemV/CST6CDT
, SystemV/CST6
, 根据要求。
您也可以参考用户指南中的 转换部分以获取更多详细信息[链接如下]: https ://mosaic.ga.lti-mosaic.com/usermanual/Transformer.html
于 2020-07-08T08:49:49.390 回答