2018-09-05
665 reads
2018-09-05
665 reads
2018-08-22
685 reads
2018-08-08
649 reads
2018-07-25
686 reads
2018-07-11
771 reads
2018-07-04
749 reads
2018-06-27
642 reads
2018-06-20
831 reads
2018-06-06
713 reads
2018-05-23
729 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 AI Experience Gap that we...
Comments posted to this topic are about the item Squared Values
Comments posted to this topic are about the item I Don't Want To Do...
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