Get data for the current week in TSQL
The below is how to get the sum of something for a week
select sum(somthing) from atable WHERE your_date >= DATEADD(DAY, DATEDIFF(DAY, 0, GETDATE()) / 7 * 7, 0)
AND your_date <= DATEADD(DAY, DATEDIFF(DAY, -1, GETDATE()), 0)
You could also use
select* from atable WHERE your_date >= DATEADD(DAY, DATEDIFF(DAY, 0, GETDATE()) / 7 * 7, 0)
AND your_date <= DATEADD(DAY, DATEDIFF(DAY, -1, GETDATE()), 0)
to get all data for that week
Showing posts with label dateadd. Show all posts
Showing posts with label dateadd. Show all posts
Monday, 19 January 2015
Friday, 30 May 2014
Date intervals for VB and Tsql
Date intervals for Sql Server
| year | yy, yyyy |
| quarter | qq, q |
| month | mm, m |
| dayofyear | dy, y |
| day | dd, d |
| week | wk, ww |
| weekday | dw |
| hour | hh |
| minute | mi, n |
| second | ss, s |
| millisecond | ms |
Usage DATEPART(datepart,date)
Dates for Visual Basic
| DateInterval.Day | d | Day of month (1 through 31) |
| DateInterval.DayOfYear | y | Day of year (1 through 366) |
| DateInterval.Hour | h | Hour |
| DateInterval.Minute | n | Minute |
| DateInterval.Month | m | Month |
| DateInterval.Quarter | q | Quarter |
| DateInterval.Second | s | Second |
| DateInterval.Weekday | w | Day of week (1 through 7) |
| DateInterval.WeekOfYear | ww | Week of year (1 through 53) |
| DateInterval.Year | yyyy | Year |
Usage DatePart(DateInterval.Quarter, ActualDate)
Subscribe to:
Posts (Atom)
Multi Point USB Charger
USB Plug Charger, 4-Port USB Fast Charger Plug with 33W Intelligent Quick Charge 3.0 Wall Charger, Multi USBPower Adapter UK Fast Charging...
-
USB Plug Charger, 4-Port USB Fast Charger Plug with 33W Intelligent Quick Charge 3.0 Wall Charger, Multi USBPower Adapter UK Fast Charging...
-
Today, emergencies happen often. Below is a list of emergency supplies that you should have available. This list is not made in stone. For...
-
If you have a Samsung phone or pad and the keyboard is set to Google give the Samsung one a try. Just go into the keyboard settings and...