Designing for the Public
The way that governments build software and work with data must change if we want to be more efficient.
2016-08-18
62 reads
The way that governments build software and work with data must change if we want to be more efficient.
2016-08-18
62 reads
Another post for me that is simple and hopefully serves as an example for people trying to get blogging as...
2016-08-18
634 reads
2016-08-17
1,255 reads
2016-08-16
122 reads
This past weekend was the first SQL Saturday in San Antonio, TX. I was lucky enough to get the chance...
2016-08-15
555 reads
2016-08-15
95 reads
I’m truly stunned at the responses I received to my post asking how far people have traveled for a SQL...
2016-08-12 (first published: 2016-08-03)
1,424 reads
Learn a few techniques for executing multiple sets of queries at once.
2016-08-11
6,453 reads
Another post for me that is simple and hopefully serves as an example for people trying to get blogging as...
2016-08-11
10,972 reads
The potential vulnerabilities of wireless devices might be a security issue for databases.
2016-08-10
109 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