如何从日期时间选择器获取时间值
如何从 DateTimePicker
值获取存储过程中的时间值?
例如:
我有一个日期时间选择器值存储在我的表中:
'2010-04-06 09:00:00.000'
'2010-04-07 14:30:00.000'
- 我必须使用
Convert(varchar,Date,3) as Date 单独获取日期
- 我已经使用
单独获取时间Convert(time,Time)
但它显示的值是 9:00 或 14:30
我需要它将它们显示为 9:00AM 和 2:30PM 而不是 14:30。
How to get the time value in a stored procedure from a DateTimePicker
value?
For Example:
I have a datetime picker value stored into my table as:
'2010-04-06 09:00:00.000'
'2010-04-07 14:30:00.000'
- I have to get the date seperately using
Convert(varchar,Date,3) as Date
- I have got the time seperately using
Convert(time,Time)
But it show the values as 9:00 or 14:30
I need it to show them as 9:00AM and 2:30PM instead of 14:30.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用
yourDate.ToString("t");
。另请检查其他格式
You can use
yourDate.ToString("t");
.Also check other formats
尝试这样的事情:
try something like that:
要获取当前时间,您可以使用
to get current time you can use