Having a Little Fun at SQL Server Central
Steve reminisces on some of the fun times he's had at SQL Server Central.
2026-02-27
90 reads
Steve reminisces on some of the fun times he's had at SQL Server Central.
2026-02-27
90 reads
A look back at SQL Server Central after 25 years from founder Brian Knight.
2026-02-20
1,454 reads
Steve talks about some of the charitable work at SQL Server Central.
2026-02-20
75 reads
This is part of a few memories from the founders of SQL Server Central, celebrating 25 years of operation this month. When we started SQL Server Central, our goal was to build a great resource that helped other people advance in their careers and also made some money. Our decisions in building the site were […]
2026-02-13
71 reads
2026-02-06
118 reads
2026-02-02
169 reads
Casino Night from SQL Server Central is coming back to the PASS Data Community Summit.
2024-09-11
419 reads
SQL Server Central is changing their policy to respond to the increased use of AI technologies.
2024-02-02
351 reads
We are adding a consent form to the SQL Server Central website to allow our cookies.
2024-01-10
1,407 reads
The SQL Server Central database servers are being upgraded on Thursday, Nov 2.
2023-11-01
659 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