gpt4 book ai didi

sqlite - SQLITE STRFTIME添加了多个修饰符

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

1. Use the strftime function with the date 2019-04-01 and display the given date along with the time
2. Use THE strftime function with the date 2019-04-01 and add 2 years to the given date, add 180 minutes to that date

1. SELECT strftime('%Y-%m-%d %H:%M', '2019-04-01');
2. select strftime('%Y-%m-%d','2019-04-01','+2 years, +180 minutes');


我已经尝试了两个问题的上述两个查询,但我什至没有找到STRFTIME的更多教程

谁能解决这个问题?

最佳答案

正确的方法是

SELECT strftime('%Y-%m-%d %H:%M', '2019-04-01', '+2 years', '+180 minutes');


+2年和+180分钟必须是单独的参数。

您将在此处找到一些示例:
https://sqlite.org/lang_datefunc.html

关于sqlite - SQLITE STRFTIME添加了多个修饰符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57356125/

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