No Excuse
I know writing and working on SQL Server is hard. It's a huge project and just managing that is hard....
2007-05-04
1,378 reads
I know writing and working on SQL Server is hard. It's a huge project and just managing that is hard....
2007-05-04
1,378 reads
2007-05-03
1,116 reads
2007-05-02
1,258 reads
Despite being without power for a few days, a hectic scramble at work to get things done, and kids off...
2007-05-01
1,476 reads
2007-05-01
1,512 reads
2007-04-30
1,996 reads
2007-04-27
2,725 reads
2007-04-26
1,883 reads
We had a blizzard on Tuesday in Denver. Apr 24 and we got nearly a foot of snow out at...
2007-04-25
1,427 reads
2007-04-25
1,335 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