Viewing 15 posts - 46 through 60 (of 60 total)
July 14, 2017 at 1:24 pm
July 12, 2017 at 12:11 pm
July 12, 2017 at 10:14 am
July 10, 2017 at 3:07 pm
June 21, 2017 at 2:14 pm
June 20, 2017 at 7:15 pm
WITH calendarMonths(FirstOfMonth)
AS
(SELECT DateAdd(mm, number, '20170101') FROM master.dbo.spt_values sv WHERE type='P')
SELECT
calendarMonths.FirstOfMonth
FROM calendarMonths;
June 19, 2017 at 3:37 pm
DROP TABLE #SummedDataJune 19, 2017 at 12:09 pm
June 19, 2017 at 8:30 am
June 19, 2017 at 7:44 am
Here's a correction to the hard-coded query, check that it's what you're looking...
June 16, 2017 at 10:14 am
June 16, 2017 at 9:03 am
June 15, 2017 at 9:44 pm
June 15, 2017 at 8:16 pm
Here is the table-
CREATE TABLE #temp4(
Bdate DATE
,Country VARCHAR(7)
,Type VARCHAR(4)
,P1 INT
,P2 INT
June 14, 2017 at 6:06 pm
Viewing 15 posts - 46 through 60 (of 60 total)