如何从日期时间选择器获取时间值

发布于 2024-08-27 09:12:02 字数 381 浏览 11 评论 0原文

如何从 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

眼角的笑意。 2024-09-03 09:12:02

您可以使用yourDate.ToString("t");
另请检查其他格式

You can use yourDate.ToString("t");.
Also check other formats

反话 2024-09-03 09:12:02

尝试这样的事情:

date.ToString("hh:mm tt", CultureInfo.InvariantCulture);

try something like that:

date.ToString("hh:mm tt", CultureInfo.InvariantCulture);
仙气飘飘 2024-09-03 09:12:02

要获取当前时间,您可以使用

now.toshorttime()

to get current time you can use

now.toshorttime()
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文