R中SQLDF中日期的差异

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

我正在使用R包SQLDF,并且无法找到两个日期时间变量之间的天数。变量ledger_entry_created_atcreated_at是Unix Epochs,当我尝试在转换为julianday之后减去它们时,我返回NA的向量。

我已经看了this previous question并且没有发现它有用,因为我的答案是在SQL中给出的,原因超出了这个问题的范围。

如果有人能帮我找到在SQLDF中做到这一点的方法,我将不胜感激。

enter image description here

编辑:

    SELECT strftime('%Y-%m-%d %H:%M:%S', l.created_at, 'unixepoch') ledger_entry_created_at, 
      l.ledger_entry_id, l.account_id, l.amount, a.user_id, u.created_at
  FROM ledger l
  LEFT JOIN accounts a
  ON l.account_id = a.account_id
  LEFT JOIN users u
  ON a.user_id = u.user_id
r datetime sqldf
1个回答
3
投票

这个答案是微不足道的,但是如果你已经有两个UNIX时间戳,并且你想知道它们之间经过了多少天,你可以简单地以秒为单位(它们的原始单位),并转换为天数,例如:

SELECT
    (l.created_at - u.created_at) / (3600*24) AS diff
    -- any maybe other columns here
FROM ledger l
LEFT JOIN accounts a
    ON l.account_id = a.account_id
LEFT JOIN users u
    ON a.user_id = u.user_id;

我不知道为什么你当前的方法失败了,因为你在屏幕截图中的时间戳应该是SQLite的julianday函数的有效输入。但是,再一次,您可能不需要这么复杂的路线来获得您想要的结果。

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