2022-08-26 (first published: 2017-08-08)
224 reads
2022-08-26 (first published: 2017-08-08)
224 reads
2021-12-10 (first published: 2017-03-30)
265 reads
There are many amazing candidates in IT, but how many can give an amazing interview. I feel I can't, can you?
2021-03-04
316 reads
2020-12-23
302 reads
Do you consider multi-skills useful; or just one with mastery in it?
2019-01-21
157 reads
Does the tone of communication matters to you that much that it affects your work in some way?
2018-05-15
121 reads
Am I guilty of over-customising software? Read this and let us know what you think.
2017-06-12
116 reads
Have you ever given up on your brainchild? If yes, how did you deal with it?
2017-04-24
124 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