需要把EST时间改成IST
Need to EST time change to IST
我必须在 (3/23/2020 12:46:00 AM)
之前 + 11:30 小时。然后日期格式将是 MM/DD/YYYY
例如:enter image description here 在 excel 中使用了格式 =Text(date+"11:30:00","MM/DD/YYYY")
这在 MS Access 的 IIF 条件下如何实现?
如果你想添加 11:30到Access中那个date/time值的日期,它可能是:
NewDateTime = Int(OldDateTime) + #11:30:00#
我必须在 (3/23/2020 12:46:00 AM)
之前 + 11:30 小时。然后日期格式将是 MM/DD/YYYY
例如:enter image description here 在 excel 中使用了格式 =Text(date+"11:30:00","MM/DD/YYYY")
这在 MS Access 的 IIF 条件下如何实现?
如果你想添加 11:30到Access中那个date/time值的日期,它可能是:
NewDateTime = Int(OldDateTime) + #11:30:00#