SQL Serverのプロシージャでは、created_date
のような1つの入力パラメータがあります。月月の範囲の終了日を見つけるSQL Server
この作成日に基づいて、その月の最初と最後の日を見つけなければなりません。
For example,
created_dateが12-08-2016
であれば、
start_date should be '01-08-2016'
end_date should be '31-08-2016'
Created_dateは15-06-2016
start_date should be '01-06-2016 00:00:00'
end_date should be '30-06-2016 23:59:59'
使用グーグル:https://sqlandme.com/2011/05/ 16/how-to-get-first-of-a-month-tsql/ –
は以下のURLで回答を得ました。http://stackoverflow.com/questions/16277504/what-is-the-equivalent oracles-last-day-function-in-sql-server-2008 – Srinivasan