Half a Year
We're halfway through the 2015 year and Steve Jones has a few thoughts for you this holiday weekend.
2015-07-03
81 reads
We're halfway through the 2015 year and Steve Jones has a few thoughts for you this holiday weekend.
2015-07-03
81 reads
Announcements recently for changes in SSMS mean that the tool many of us rely on is growing up.
2015-07-02
220 reads
What's the best way to enter this business? Steve Jones has a few thoughts on the traditional CS degree.
2015-07-01
250 reads
Work is important, and it's a large part of our lives, but Steve Jones notes we need to keep things in perspective.
2015-06-30
136 reads
Phil factor find much to admire in the StackOverflow architecture. It is built on SQL Server, doesn't use microservices or the cloud. It all seems a bit retro, but it manages manage 440 million queries a day, peaking at 8500 queries per second, and never even breaks into a sweat.
2015-06-29
132 reads
2015-06-29
319 reads
Steve Jones talks about blogging today, how it can help your career, and how easy it can be to get started.
2015-06-25
144 reads
2015-06-24
611 reads
Finding staff with the proper skills can be a challenge, and it might be a reason why you choose, or remain with, a particular technology.
2015-06-23
200 reads
Rodney Landrum impresses on his audience the importance of attention to the finer details, during data analysis and reporting.
2015-06-22
227 reads
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...
By Steve Jones
One of the things I’ve been requesting for a number of years is cost...
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