What-If Analysis in Power BI Desktop
One of the most talked about features previewed during the Microsoft Data Insights Summit in the previous June was the...
2017-08-11
1,256 reads
One of the most talked about features previewed during the Microsoft Data Insights Summit in the previous June was the...
2017-08-11
1,256 reads
For the past few years I’ve combined my love of professional football and analytics by releasing a series of Power...
2017-08-17 (first published: 2017-07-28)
3,454 reads
For the past few years I’ve combined my love of professional football and analytics by releasing a series of Power...
2017-07-28
528 reads
I’ve been working on a proof of concept for a customer that involved using Azure Analysis Services as a cache...
2017-06-21
2,578 reads
I’ve been working on a proof of concept for a customer that involved using Azure Analysis Services as a cache...
2017-06-21
532 reads
The theme of day 2 of the Microsoft Data Insights Summit was sessions, sessions, sessions! There were a ton of...
2017-06-27 (first published: 2017-06-15)
2,085 reads
The theme of day 2 of the Microsoft Data Insights Summit was sessions, sessions, sessions! There were a ton of...
2017-06-15
237 reads
If you were at the Microsoft Data Insights Summit or were watching the live stream of the keynote, then you...
2017-06-21 (first published: 2017-06-13)
2,922 reads
If you were at the Microsoft Data Insights Summit or were watching the live stream of the keynote, then you...
2017-06-13
292 reads
Obviously the big news of the day is the announcement for general availability of Power BI Premium! And if you...
2017-06-12
635 reads
By Steve Jones
I type fairly well. Well, I type fast, but I do wear out a...
By ReviewMyDB
Index maintenance has always meant nightly jobs and a window you have to defend....
I’m sure you’ve all heard the tale of Goldilocks and the Three Bears, but...
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