Unit Test Sql Server Code
In part 3 of this series of blogs on “getting more agile” I am going to look at unit testing and why we need to do it.
My code is...
2015-03-03
13 reads
In part 3 of this series of blogs on “getting more agile” I am going to look at unit testing and why we need to do it.
My code is...
2015-03-03
13 reads
In part 3 of this series of blogs on "getting more agile" I am going to look at unit testing...
2015-03-03
409 reads
In part 3 of this series of blogs on “getting more agile” I am going to look at unit testing...
2015-03-03
53 reads
In part 3 of this series of blogs on “getting more agile” I am going to look at unit testing...
2015-03-03
62 reads
What is it? MergeUi is a addin (VSPackage) for Visual Studio / Sql Server Data Tools projects. It is a ui to create and edit T-Sql merge statements in...
2015-03-01
7 reads
What is it?
MergeUi is a addin (VSPackage) for Visual Studio / Sql Server Data Tools projects. It is a ui to...
2015-03-01
418 reads
What is it? MergeUi is a addin (VSPackage) for Visual Studio / Sql Server Data Tools projects. It is a ui...
2015-03-01
55 reads
What is it? MergeUi is a addin (VSPackage) for Visual Studio / Sql Server Data Tools projects. It is a ui...
2015-03-01
40 reads
In the second part of this series on getting more agile and bringing our Sql Server development practices up to date I am going to talk about why you...
2015-02-19
3 reads
In the second part of this series on getting more agile and bringing our Sql Server development practices up to...
2015-02-19
47 reads
By Steve Jones
I type fairly well. Well, I type fast, but I do wear out a...
By way of background, a while back I did video called “My New Favourite...
By ReviewMyDB
Index maintenance has always meant nightly jobs and a window you have to defend....
Comments posted to this topic are about the item SQL Art, Part 4: Happy...
WA:08218154393 Jl. Asia Afrika No.122-124, Paledang, Kec. Lengkong, Kota Bandung, Jawa Barat 40261
WA:08218154393 Jalan Marsma R. Iswahyudi 05, Rukun Tetangga No.20, Sepinggan, Kecamatan Balikpapan Selatan, Kota...
I have this data in the dbo.Commission table in a SQL Server 2022 database.
salesperson commission Brian 12 Brian 16 Andy 7 Andy 14 Andy 21 Steve 20 Steve NULLAll the data is a varchar, and I decide to run this query to get the totals for each salesperson.
SELECT SalesPerson
, AVG(TRY_PARSE(Commission AS int)) AS TotalCommission
FROM commission
GROUP BY SalesPerson
GO
What average commission is calculated for Steve? See possible answers