Why didnt my Azure ARM deploy work?
I have been using Octopus to deploy ARM templates for a while now and the default task that comes with...
2018-04-04
125 reads
I have been using Octopus to deploy ARM templates for a while now and the default task that comes with...
2018-04-04
125 reads
I have been using Octopus to deploy ARM templates for a while now and the default task that comes with...
2018-04-04
135 reads
I have been starting to write more and more typescript lately and quite enjoying it. I have also been writing a few vsts extensions and using typescript to write...
2018-03-05
8 reads
I have been starting to write more and more typescript lately and quite enjoying it. I have also been writing...
2018-03-05
133 reads
I have been starting to write more and more typescript lately and quite enjoying it. I have also been writing...
2018-03-05
139 reads
I have been starting to write more and more typescript lately and quite enjoying it. I have also been writing...
2018-03-05
335 reads
In the first part of this series, we looked at where to find out more information about GDPR in the...
2018-02-20 (first published: 2018-02-08)
2,077 reads
In the last half of 2017, I decided to run a tSQLt course and went down the route of putting...
2018-02-16 (first published: 2018-02-06)
3,042 reads
In the first part of this series, we looked at where to find out more information about GDPR in the UK (hint: The ICO.gov website has everything you need)....
2018-02-08
13 reads
In the first part of this series, we looked at where to find out more information about GDPR in the...
2018-02-08
114 reads
By Arun Sirpal
Every DBA has a box like this. Sitting untouched for months. Nobody’s proud of...
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...
Comments posted to this topic are about the item SQL Art, Part 4: Happy...
Comments posted to this topic are about the item How We Handled a Vendor...
Comments posted to this topic are about the item Cognitive Coverage
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