Access中的计算列

时间:2019-02-28 13:48:47

标签: ms-access ms-access-2010 ms-access-2013 ms-access-2016

我在表(Access DB)中有两列:

  • Open_DATE
  • 截止日期

我想在表格中定义第三列,该表格使用上述日期之间的差来计算天数差。 在Access中执行此操作的最佳做​​法是什么?

谢谢!

2 个答案:

答案 0 :(得分:2)

使用查询

Select 
    Open_Date, 
    Closed_Date, 
    DateDiff("d", Open_Date, Closed_Date) As Days
From 
    YourTableName

答案 1 :(得分:2)

使用SQL:

Select [{YourTableName}]![Open_Date]-[{YourTableName}]![Closed_Date] 
as {whatever you want to name the calculated field} from [{YourTableName}];