Viewing 15 posts - 31 through 45 (of 78 total)
Another way of achieving the same result...I am not sure about the nature of your ID column. It appeared to me to be a candidate for Primary Key but since...
November 22, 2009 at 2:10 am
You can try this too...
convert the float value to int and then convert the resultant to varchar
consider this:
/*Assuming you have a float value*/
declare @f float = 12345678
select convert(varchar(10), convert(int, @f))
One...
November 22, 2009 at 12:38 am
For people wishing to learn SET BASED T SQL Programming - I recommend this post whole heartedly. Every single word needs to be understood at the utmost microscopic detail. Many...
November 21, 2009 at 11:55 pm
That's surprising! Is there a way to verify this? I always thought that the entire Select Statement is executed atomically - meaning all at once. This seems to suggest that...
November 21, 2009 at 8:24 pm
Dear Jeff:
You are truly awesome. Heartfelt thank you for explaining it so succinctly and beautifully. I was able to understand every syllable of it.
Regards,
Saurabh.
November 21, 2009 at 11:01 am
Dear Jeff: Please pardon me if this seems to be a naive question - however I wanted to understand why you have chosen to use the Newid() function here when...
November 21, 2009 at 10:11 am
Hmmm... sounds pretty interesting! What kind of problem are you working on? Would it be possible for you to share some details with us - unless confidentiality requires otherwise...
August 11, 2009 at 1:37 am
Apologies for multiple posts....there was some problem with my internet connection. I have deleted the multiple posts anyway.
Viki - It would be instructive to familiarize yourself with Question Posting Best...
August 10, 2009 at 10:19 pm
I am truly honored to hear the good words from you, Jeff. It's a big encouragement and kind of vindicates my decision of posting my code (I had debated whether...
August 10, 2009 at 8:30 pm
I did it slightly differently and realized that I have a lot to learn as far as sql coding is concerned. But I just wanted to present another way of...
August 10, 2009 at 4:20 am
roxanadima1 (6/3/2009)
It should be something like that....
SELECT distinct top 10 i.x, d.droit
FROM v_droit...
June 3, 2009 at 7:04 am
Viewing 15 posts - 31 through 45 (of 78 total)