2007-12-25
2,514 reads
2007-12-25
2,514 reads
In the spirit of celebration at the end of the year, a break from the usual routine. Happy holidays to all and hopefully no one is working this weekend.
2007-12-24 (first published: 2004-12-24)
4,405 reads
Complying with software licensing is something you should do, but how far should companies take this?
2007-12-24
143 reads
Steve Jones shares a few tricks that might make it easier and quicker for you to work with SQL Server 2005 Management Studio
2007-12-24
7,937 reads
My new laptop came with Vista Home and I messed with it for awhile last night, but I didn't see...
2007-12-24
1,459 reads
My new laptop showed up today at my desk. Actually it probably showed up yesterday, but since I never went...
2007-12-23
1,536 reads
What would you recommend for the holidays next week when the office is closed.
2007-12-21
120 reads
Someone posted a question about what should they try to learn for an interview coming soon, but the company was...
2007-12-20
1,536 reads
2007-12-20
1,912 reads
Test data is critical to being sure your application works, but is production data ok to use in test environments?
2007-12-19
520 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