Data Vices
Steve Jones asks about what you might change about yourself at work for this Friday's poll.
2014-09-12 (first published: 2008-12-05)
164 reads
Steve Jones asks about what you might change about yourself at work for this Friday's poll.
2014-09-12 (first published: 2008-12-05)
164 reads
There's a new contest going on, giving you the chance to win some software, SQL training, and a vacation, all at once.
2014-09-11
180 reads
Steve Jones looks ahead at the new year and how you might want to begin shaping your career.
2014-09-10
192 reads
Software estimates are often wildly off from the actual amount of time and resources that are required. Today Steve Jones looks at a few reasons why.
2014-09-09
198 reads
The configuration of server systems matters. Not just to ensure software runs smoothly, but also for security.
2014-09-08
91 reads
2014-09-08
369 reads
In a followup to his previous piece, Andy Warren looks at job titles again and they can affect the people he works with.
2014-09-05
203 reads
How many times have you wanted to restore a database to an earlier version? Today Steve Jones asks why can't we do this and includes a way for you to vote on this.
2014-09-04 (first published: 2010-01-13)
233 reads
2014-09-02
262 reads
2014-09-01
79 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