MongoDB的$week operator狀態 Takes a date and returns the week of the year as a number between 0 and 53.
Weeks begin on Sundays, and week 1 begins with the first Sunday of the year. Days
preceding the
的特定週日期我是相當新的PostgreSQL和最近在我的項目,我所遇到的問題與檢索所有記錄一年中特定的星期。主要問題當然是邊界周(1和52/53)。 對於這個[我已寫了一個函數: CREATE OR REPLACE FUNCTION week_dates(_week integer, _year integer) RETURNS date[] AS $$
DECLARE
result
如果我給日期2015年12月31日,它必須顯示爲 2015W53, for 2015-12-31, which means Week 53, and next follows as
2016W1, Next as
2016W2, Next as
2016W3 Next as...
我的邏輯是 DECLARE @WEEK VARCHAR(2), @YEAR VARC
我一直在努力解決這個問題幾個小時,並繼續打牆。我非常接近,但有小的細節錯誤。目前,我在excel vba中使用= weeknum來動態創建一行並接收#NUM!錯誤。它似乎工作時,我引用一個單元格,但當我手動輸入日期時,我得到類型不匹配的錯誤,並改變其他錯誤。我使用的日期格式是6/3/2013 任何幫助非常感謝,並感謝您的時間! Sub Macro2()
Dim xDate As Doub