DacFX Links
I thought it would be a good idea to gather together a list of links for DacFx, blogs code or...
2014-12-07
90 reads
I thought it would be a good idea to gather together a list of links for DacFx, blogs code or...
2014-12-07
90 reads
I thought it would be a good idea to gather together a list of links for DacFx, blogs code or...
2014-12-07
46 reads
If you get the Visual Studio 2012 or 2013 web installer then it uses the BITS service to download the setup files.
The BITS service is used to download files...
2014-12-07
11 reads
If you get the Visual Studio 2012 or 2013 web installer then it uses the BITS service to download the...
2014-12-07
53 reads
If you get the Visual Studio 2012 or 2013 web installer then it uses the BITS service to download the...
2014-12-07
63 reads
When you already have a test framework setup such as MSTest or NUnit and possibly a CI build in place and you want to add Sql Server tests it...
2014-11-20
9 reads
When you already have a test framework setup such as MSTest or NUnit and possibly a CI build in place...
2014-11-20
62 reads
When you already have a test framework setup such as MSTest or NUnit and possibly a CI build in place...
2014-11-20
53 reads
When you already have a test framework setup such as MSTest or NUnit and possibly a CI build in place...
2014-11-20
21 reads
When unit testing code there is a really powerful feature that is either called mocking or faking or sometimes using stubs and what these mean is creating objects that...
2014-11-18
18 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. Jenderal Ahmad Yani No.1, Benua Melayu Darat, Kec. Pontianak Sel., Kota Pontianak,...
WA:08218154393 Jl. Jenderal Sudirman No.139, Klandasan Ilir, Kec. Balikpapan Kota, Kota Balikpapan, Kalimantan Timur...
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