T-SQL Tuesday #008 - Learning
It’s time for another T-SQL Tuesday, the brainchild of Adam Machanic (Blog|@AdamMachanic) of SQLBlog.com. This time we have a SQLServerCentral...
2010-07-13
873 reads
It’s time for another T-SQL Tuesday, the brainchild of Adam Machanic (Blog|@AdamMachanic) of SQLBlog.com. This time we have a SQLServerCentral...
2010-07-13
873 reads
I have a great job. Actually it’s a fantastic job for me. I have flexible hours, I can work almost...
2010-07-13
372 reads
I read a blog recently that was titled: Time to Stop Settling. I think that the author (a friend) was...
2010-07-12
382 reads
Is Information Technology a utility service for companies? Steve Jones thinks it can, and should, be, but it can also be a lot more. It can be a strategic part of your enterprise.
2010-07-12
100 reads
Up early, the only one in the house, so I made coffee, sat down to check on SSC and the...
2010-07-11
349 reads
I was querying the SQLServerCentral database for something else today, and I decided to take a minute and double check...
2010-07-09
409 reads
For this Friday poll, Steve Jones asks about assumptions that cause you problems at work.
2010-07-09
142 reads
One of the things that got us to switch OSes from W2K to WinXP when I was an administrator at...
2010-07-09
447 reads
2010-07-09
3,024 reads
I saw a post recently by someone asking how to get a database to be suspect. They said they had...
2010-07-08
608 reads
By Steve Jones
My life has some crazy travel stretches for sure. Between speaking, office visits, customer...
In Part 1, we saw how ‘Vamana’ represents vectors as nodes, connects them with...
I’m excited to announce the release of a new open-source project that fully automates...
Comments posted to this topic are about the item Optional Parameter Plan Optimization in...
Comments posted to this topic are about the item AI Experience Gap that we...
There is a table tmp_tab:
CREATE TABLE tmp_tab ( id int, val int );
INSERT INTO tmp_tab VALUES (1, 1), (2, NULL), (3, 3), (4, 4), (5, 5);You want to order the rows ids by the following expression:
ISNULL(val, id) + 1Which of the following queries produces the expected ordering and why? (Select all correct) See possible answers