gpt4 book ai didi

azure - 如何在数据流表达式生成器中连接字符串与日期

转载 作者:行者123 更新时间:2023-12-03 06:25:14 25 4
gpt4 key购买 nike

为什么这在 Azure 数据工厂的数据流表达式生成器中不起作用:concat(subDays(currentUTC(),-1),'.parquet')

我不明白为什么这么难???

最佳答案

Concat 函数期望其参数为“字符串”类型。但 subDays(currentUTC(),1) 将以 timestamp/date 类型提供数据。这就是我们收到类型不匹配

错误的原因

enter image description here

要删除此错误消息,请使用 toString() 将时间戳数据转换为字符串类型。表达式为,

concat(toString(subDays(currentUTC(),-1)),'.parquet')

enter image description here

结果:该表达式给出的结果没有任何错误。此表达式从 currentUTC() 天减去 -1。减 -1 只不过是给日期加 1。

enter image description here

关于azure - 如何在数据流表达式生成器中连接字符串与日期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/75595579/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com