Viewing 15 posts - 541 through 555 (of 812 total)
Maybe, you miss the UPDATE clause:
declare @mykey int
update top 1 mytable set
@mykey = mykey
where status = 0
print @mykey
August 17, 2012 at 3:02 am
I agree with Steve. C and C++ help to understand how to handle memory/cpu/io/other devices. They help to develop very good performance applications or batch processing.
In 1986, I started with...
August 15, 2012 at 8:16 am
paul.knibbs (8/3/2012)
August 3, 2012 at 2:39 am
Koen Verbeeck (8/3/2012)
Indeed, the correct answer is 1,0,1,error, because the last query produces a syntax error. Shame, because it was a pretty good question otherwise.Points back please 🙂
No, the last...
August 3, 2012 at 2:25 am
I poke the wrong answer, but I learned something new.
Thanks.
😀
July 19, 2012 at 12:58 am
Good: Correct answers: 95% (70)
I never saw a qotd with 100% of correct answers.
July 12, 2012 at 12:51 am
By the way:
I often use NULLIF when 3rd party application use MAGIC VALUES instead of NULL.
e.g. 1799-12-31 stands for NULL DATETIME.
Here's a generic example to get an actual...
June 26, 2012 at 6:46 am
Koen Verbeeck (6/25/2012)
Small error: the select statement selects 4 columns, the answers have only 3.
BIG ERROR: I answered thinking at the first 3 columns, so that Y would return without...
June 26, 2012 at 12:59 am
tommyh (6/19/2012)
If one wants be really picky "Depends on File System" is actually the right answer.You can install 2012 on FAT32
/T
Is FAT32 still alive?
FAT32 is deprecated because of...
June 20, 2012 at 1:08 am
Koen Verbeeck (4/17/2012)
Carlo Romagnano (4/17/2012)
I am curious to know how many developpers will use default value for "START WITH". In most cases will be a negative number.
They will all be...
April 17, 2012 at 2:06 am
I am curious to know how many developpers will use default value for "START WITH". In most cases will be a negative number.
April 17, 2012 at 1:17 am
Viewing 15 posts - 541 through 555 (of 812 total)