我想獲取11天前剛剛創建的所有paid_account
記錄。這是我現在有:查找X天前創建的記錄
SELECT *
FROM paid_account
WHERE date_trunc('day', created_at) = date_trunc('day', date ?)
-- The ? gets replaced with today's date in the user's timezone.
這樣的作品,但它似乎必須有一個更簡單的方法來做到這一點。有沒有更好的辦法?
怎麼樣'created_at :: date =(current_date - 11)'? –
工作。如果你把這個作爲答案,我會接受它。 –