2016-09-27
1,099 reads
2016-09-27
1,099 reads
The world of machine learning and artificial intelligence are growing. Steve Jones notes this means we need to decide if we can trust the black boxes.
2016-09-26
68 reads
This Friday Steve Jones looks to find out what things help people learn and build skills more readily.
2016-09-23
90 reads
2016-09-23
1,013 reads
A competition among software bots may foretell a vision of the future for software developers.
2016-09-22
94 reads
I wrote about Azure SQL Database for T-SQL Tuesday #82, but I had a few mistakes in my process, at...
2016-09-22
585 reads
This week Steve Jones notes that backups aren't the most important thing for your data. Restores are.
2016-09-19
110 reads
2016-09-16
1,127 reads
Data Science is a hot area and one to which quite a few people would like to move. Steve Jones has some thoughts on trying to get certified in this area.
2016-09-15
170 reads
I tend to try and get code on the screen quickly and then start to remove things. I’m a visual...
2016-09-15
617 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...
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