Viewing 5 posts - 1 through 6 (of 6 total)
I am not doing calculations with such precision. I was just going to display the data with such accuracy. i.e. I have 2013-09-15 which is the end of the week...
September 12, 2013 at 5:27 am
To be honest with you I don't like dynamic sql because of quotation marks '' which are making whole code harder to read 🙂
So Instead of this I developed something...
July 10, 2013 at 7:44 am
Kingston Dhasian (5/29/2013)
phoenix_ (5/29/2013)
Is it possible somehow to convert it to 'one' select statement so I will have only one result?
Yes. It is possible to convert it to single SELECT...
May 29, 2013 at 7:59 am
In the meantime I created something like this...
declare @StartDate date
set @StartDate = '2013-01-03'
declare @EndDate date
set @EndDate = '2013-02-21'
declare @DateCalc date
declare @WeekStartDate date
set @WeekStartDate...
May 29, 2013 at 6:26 am
Viewing 5 posts - 1 through 6 (of 6 total)