2016-08-19
1,204 reads
2016-08-19
1,204 reads
The way that governments build software and work with data must change if we want to be more efficient.
2016-08-18
62 reads
Another post for me that is simple and hopefully serves as an example for people trying to get blogging as...
2016-08-18
634 reads
2016-08-17
1,255 reads
2016-08-16
122 reads
This past weekend was the first SQL Saturday in San Antonio, TX. I was lucky enough to get the chance...
2016-08-15
555 reads
2016-08-15
95 reads
I’m truly stunned at the responses I received to my post asking how far people have traveled for a SQL...
2016-08-12 (first published: 2016-08-03)
1,424 reads
Learn a few techniques for executing multiple sets of queries at once.
2016-08-11
6,452 reads
Another post for me that is simple and hopefully serves as an example for people trying to get blogging as...
2016-08-11
10,970 reads
By Steve Jones
It’s Prime Day. A few of my recommendations, since I want to do some...
With Fabric Mirroring, Microsoft is promoting a nice and appealing story for operational reporting...
If you’ve been watching AI roll through the data community and thinking, “this seems...
Comments posted to this topic are about the item SQL Art, Part 4: Happy...
Wa:0817819444 Jl. Ahmad Yani No.9, RT.01/RW.05, Marga Jaya, Kec. Bekasi Sel., Kota Bks, Jawa...
Wa:0817819444 Jl. Panglima Sudirman No.35, Baturetno, Kec. Tuban, Kabupaten Tuban, Jawa Timur 62314
I have this code on SQL Server 2022. What happens when it runs all at once?
DROP TABLE IF EXISTS dbo.Commission GO CREATE TABLE dbo.Commission (id INT NOT NULL IDENTITY(1,1) CONSTRAINT CommissionPK PRIMARY KEY , salesperson VARCHAR(20) , commission VARCHAR(20) ) GO INSERT dbo.Commission ( salesperson, commission) VALUES ( 'Brian', 12 ), ( 'Brian', 'None' ) GOSee possible answers