英文:
how to update just the year in Teradata Date Column
问题
我有一个Teradata表格,其中包含交付日期:
交付日期
24-03-2018 07:34:00.000000
29-03-2018 07:34:00.000000
30-03-2018 07:34:00.000000
我只想将交付日期中的年份(从2018更改为2019)。
交付日期
24-03-2019 07:34:00.000000
29-03-2019 07:34:00.000000
30-03-2019 07:34:00.000000
DateAdd - 我认为在SQL Server中可以使用。在Teradata中是否有类似的函数?
英文:
I have a Teradata table with delivery dates:-
Delivery_Date
24-03-2018 07:34:00.000000
29-03-2018 07:34:00.000000
30-03-2018 07:34:00.000000
I just want to update the YEAR (from 2018 to 2019) in the Delivery_Date
Delivery_Date
24-03-2019 07:34:00.000000
29-03-2019 07:34:00.000000
30-03-2019 07:34:00.000000
DateAdd - i think works in SQL Server. Is there any function in Teradata for this
答案1
得分: 0
已经在一些研究和开发后得出答案
更新表名 set delivery_date = delivery_date + interval '1' year
英文:
got the answer after some R and D
update tablename set delivery_date = delivery_date + interval '1' year
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论