我在表(Access DB)中有两列:
我想在表格中定义第三列,该表格使用上述日期之间的差来计算天数差。 在Access中执行此操作的最佳做法是什么?
谢谢!
答案 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}];