A New Year's Present
I awoke this morning, rather later than usual after a small get together with some friends, and came down to...
2008-01-01
704 reads
I awoke this morning, rather later than usual after a small get together with some friends, and came down to...
2008-01-01
704 reads
It's important that you manage your career and not just leave it to chance. Steve Jones talks about what you might do to ensure that you'll be successful in the IT world.
2007-12-31
583 reads
Interviewing, Google as a monopoly, Cumulative Update 5 and more.
2007-12-31
119 reads
2007-12-28
114 reads
So my DVD drive in the new laptop appeared to be dead. It didn't appear in the "Computer" list with...
2007-12-28
1,466 reads
How anonymous are your ratings and other opinions on the Internet? Not as much as you might think.
2007-12-27
206 reads
Steve Jones takes a look at what's happening in the world of alternative energy, including cleaner nuclear power and energy from motion.
2007-12-26
65 reads
Maybe I'm succombing, maybe I'm lazy, most likely I don't want to mess with it.
I found some instructions for nLite,...
2007-12-25
1,487 reads
2007-12-25
37 reads
2007-12-25
2,514 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