Happy New Year!
Let’s make 2021 a year where we protect our mental health. Looking back at 2020 no one could predict a global pandemic and the chaos that it would cause...
2021-01-01
14 reads
Let’s make 2021 a year where we protect our mental health. Looking back at 2020 no one could predict a global pandemic and the chaos that it would cause...
2021-01-01
14 reads
Let’s make 2021 a year where we protect our mental health. Looking back at 2020 no one could predict a global pandemic and the chaos that it would cause...
2021-01-01
16 reads
Let’s make 2021 a year where we protect our mental health. Looking back at 2020 no one could predict a global pandemic and the chaos that it would cause...
2021-01-01
10 reads
Let’s make 2021 a year where we protect our mental health. Looking back at 2020 no one could predict a global pandemic and the chaos that it would cause...
2021-01-01
7 reads
Let’s make 2021 a year where we protect our mental health. Looking back at 2020 no one could predict a global pandemic and the chaos that it would cause...
2021-01-01
8 reads
Let’s make 2021 a year where we protect our mental health. Looking back at 2020 no one could predict a global pandemic and the chaos that it would cause...
2021-01-01
11 reads
Let’s make 2021 a year where we protect our mental health. Looking back at 2020 no one could predict a global pandemic and the chaos that it would cause...
2021-01-01
5 reads
Let’s make 2021 a year where we protect our mental health. Looking back at 2020 no one could predict a global pandemic and the chaos that it would cause...
2021-01-01
12 reads
Let’s make 2021 a year where we protect our mental health. Looking back at 2020 no one could predict a global pandemic and the chaos that it would cause...
2021-01-01
8 reads
Let’s make 2021 a year where we protect our mental health. Looking back at 2020 no one could predict a global pandemic and the chaos that it would cause...
2021-01-01
7 reads
By Steve Jones
It’s time for T-SQL Tuesday again and this is a great prompt to start...
How I used AI for this postChatGPT to generate images based on info specifically...
By ReviewMyDB
My T-SQL Tuesday #202 entry for Marlon Ribunal's invitation on memorable SQL Server outages....
Bonjour à tous, La semaine dernière, nous avons effectué une mise à niveau de...
Comments posted to this topic are about the item Adding new column with DEFAULT
I've got a web application for my side business. I've added a SQL Server...
Which number will the COUNT() return after executing the following statements:
DROP TABLE IF EXISTS #test; CREATE TABLE #test (id INT) INSERT INTO #test (id) SELECT * FROM GENERATE_SERIES(1, 3) AS gs ; ALTER TABLE #test ADD flag BIT CONSTRAINT DF_#test_flag DEFAULT 0; go UPDATE #test SET flag = 0 WHERE id = 1 UPDATE #test SET flag = 1 WHERE id = 2 INSERT INTO #test (id) VALUES (4) SELECT COUNT(*) FROM #test AS t WHERE flag = 0See possible answers