本文介绍了(SQL SERVER)从datetime列中选择日期的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
您好!
我正在使用Microsoft SQL 2005
我的日期时间列存储如下数据:5/13/2014 12:00:00 AM
无论如何,我只能从日期时间栏中选择日期吗?
比如,我可以只获得'5/13/2014'部分吗?
提前致谢!
Hello!
I'm using Microsoft SQL 2005
My datetime column stores data like this: 5/13/2014 12:00:00AM
Is there anyway i can select the date only from datetime column?
Like, can i get the '5/13/2014' part only?
Thanks in advance!
推荐答案
select convert(varchar(10),'5/13/2014 12:00:00AM',103)
这篇关于(SQL SERVER)从datetime列中选择日期的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!