Viewing 15 posts - 16 through 30 (of 137 total)
I guess this might help
SELECT cast (round(11.63,1) as numeric(12,1))
/*Replace your column name instead 11.63*/
September 11, 2014 at 5:30 am
This question is more of like traversing to the next record from a cycle.
August 29, 2014 at 1:00 pm
Hi Experts,
There would be a better solution then , the one mention above by me.
If some body has it would be great to know. Just to improve on my own....
August 29, 2014 at 8:21 am
I tried a little bit on solution and got it right :w00t:
So here is the code
SELECT t.UserName, t.Drink, t.CreatedDate, x.Value
FROM #TEMP t
OUTER APPLY (
SELECT TOP 1 Value
FROM
(
--SELECT *...
August 28, 2014 at 12:23 pm
Hi Eirikur,
🙂 your example was a good learning , Thanks.
Mr.Eirikur , Do you know some good article which are good to understand Grouped Set, Of Course google is present ,...
August 23, 2014 at 2:18 pm
Hi Eirikur,
I have being trying to help OP with this question with the help of your solution.
I think the grouping in your solution is incorrect.
If we consider the first group...
August 23, 2014 at 1:33 pm
I would once again like to thank you Chris , thanks for taking out the time and helping me.
August 20, 2014 at 7:04 am
Hi Chris,
I Thank you for taking time out and answering my question.
Actually i was thinking of tweaking the result set little bit, but i was not able to come...
August 20, 2014 at 3:26 am
Hi Experts ,
I am not able to come up with the logic for making them (Catch Out/HitWicket to LBW) as one group and then perform the operation(take the strike...
August 14, 2014 at 2:25 am
ChrisM@Work (8/7/2014)
Shadab Shah (8/7/2014)
ChrisM@Work (8/7/2014)
August 10, 2014 at 9:20 pm
ChrisM@Work (8/7/2014)
August 7, 2014 at 7:48 am
Thanks Chris for the reply and your time.
Since yesterday i am trying to improvised on the solution given by you.
Actually there is one more condition , Consider the below
CREATE...
August 6, 2014 at 7:29 pm
Hi Steve,
I am newbie and might be wrong but even though Cube is not process or has failed to process, i should be able to see and access the...
July 1, 2014 at 3:48 am
Ok. Got it. Actually i happen ,not to see your link which you had posted.
Thanks for your time Koen 🙂
June 17, 2014 at 1:28 am
Viewing 15 posts - 16 through 30 (of 137 total)