How not to ask for help
you can help me for the visule studio 2005 programe I have assigment
I do not how to use for...
2010-12-17
726 reads
you can help me for the visule studio 2005 programe I have assigment
I do not how to use for...
2010-12-17
726 reads
After my call for “What the Business Says Is Not What the Business Wants”, there were quite a few people...
2010-12-17
1,321 reads
2010-12-17
655 reads
Tonight was the 2010 Denver SQL Server User group party. I typically haven’t done in the past to the holiday...
2010-12-16
1,162 reads
To what extent should a hypervisor company support other software? Will this have implications for cloud computing, or services used in software? Steve Jones comments.
2010-12-16
81 reads
Despite my joking with Aaron Bertrand on Twitter that his suggestion on Connect got voted down because he’s Canadian, I...
2010-12-16
1,043 reads
I'm slow to get this out, but I finally rendered the raw bloopers from November. Enjoy.
Part 1
Part 2
Part 3
2010-12-15
1,105 reads
Today Steve Jones reminds us that talent and technical skills are not necessarily enough to advance your career and that you ought to remember to work on other types of skills that you may want to improve.
2010-12-15
221 reads
It’s going to be a busy week for me. At last count, I had over 40 comments for my T-SQL...
2010-12-14
706 reads
Today Steve Jones talks about those products we consider "low-end." Products like Access or VB. Are they a problem for us?
2010-12-14
181 reads
I’m excited to announce the release of a new open-source project that fully automates...
One of my favourite features of SQL Server 2022 was the T-SQL Snapshot Backups....
By Steve Jones
I have said and written this many times: Redgate Software is the type of...
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