在 MS Access 中以指定格式显示日期时间列

问题描述 投票:0回答:1

如何在 MS Access 中显示日期时间 SQL Server 列(包括毫秒)。现在它指定

mm/dd/yy hh:nn:ss
格式。有什么方法可以添加毫秒(它们在 SQL Server 表中)?

我在网上查了又查,没有找到答案。

datetime ms-access-2016 milliseconds
1个回答
0
投票

假设您的 SQL Server 表有一个名为 YourDateTimeField 的日期时间字段,请按照以下步骤操作:

  • 在 Microsoft Access 中,转到“外部数据”选项卡。选择“ODBC 数据库”并链接到您的 SQL Server 表。
  • 在 Access 中创建引用链接表的新查询。
  • 使用Format函数自定义显示格式并包括毫秒。 选择你的表.你的日期时间字段, 格式([您的日期时间字段], "mm/dd/yy hh:nn:ss") & "." & Format([YourDateTimeField], "000") AS FormattedDateTime 来自您的餐桌;

将 YourTable 和 YourDateTimeField 替换为您的实际表和日期时间字段名称。

© www.soinside.com 2019 - 2024. All rights reserved.