Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有与我的数据库(SQL Server 2008)连接的 VB 脚本,这个脚本查询包含getdate()函数,现在我想减去 2 个时间值,假设 SQL1-SQL2 并且只想要时间差,而不是日期。
getdate()
SELECT DATEDIFF(MINUTE, SQL2, SQL1) FROM dbo.table;
如果您想在 VBScript 中执行此操作,则类似于:
x = datediff("n", rs("SQL2"), rs("SQL1"))
datediff 的 T-SQL 文档 datediff 的 VBScript 文档