sqlite中日期函数的转换
尝试在 sqlite 中将日期格式“2011-03-25 15:00:00.0”转换为“2011-03-25”并遇到深层次的麻烦。
当我运行这一行时,它工作正常: sqlite> select strftime("%Y-%m-%d",'现在'); 2011-03-16
但是当我运行这条线时,它丢失了: sqlite>从测试中选择 strftime("%Y-%m-%d",'date_start') ;
我在这方面做错了什么?
西戈斯
Trying to convert the date format "2011-03-25 15:00:00.0" to "2011-03-25" in sqlite and getting deep troubles.
When I run this line, it works fine:
sqlite> select strftime("%Y-%m-%d",'now');
2011-03-16
But when I run this line, it loses out :
sqlite> select strftime("%Y-%m-%d",'date_start') from test;
What am I doing wrong in this?
Sagos
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
删除
date_start
中的引号Remove the quotes from
date_start