The Biggest Data Breach (For Now)
JP Morgan suffers the largest data breach for a financial institution, but Steve Jones doesn't think this record will stand for long.
2015-11-24
196 reads
JP Morgan suffers the largest data breach for a financial institution, but Steve Jones doesn't think this record will stand for long.
2015-11-24
196 reads
2015-11-23
131 reads
Today we have a guest editorial from Andy Warren that looks at those that run software early in its lifecycle.
2015-11-20
93 reads
Most DBAs don't get involved with budgets at work, but we are affected by them. Steve notes you might want to understand how budgets work.
2015-11-19
140 reads
Should we consider the relational model the default and only after having a good reason look at a NoSQL platform? Steve Jones has a few comments.
2015-11-18
119 reads
The laws and morals regarding privacy aren't well defined, but Microsoft is making a stand.
2015-11-17
118 reads
Louis Davidson explains why a little database courtesy goes a long way.
2015-11-16
232 reads
2015-11-12
239 reads
Many organizations have code no one wants to touch. Steve Jones notes that's a bad place to be.
2015-11-10
257 reads
Grant Fritchey shows his softer side, extending his appreciation to all DBAs who work tirelessly to keep our software running in the face of adversity.
2015-11-09
698 reads
By Steve Jones
I type fairly well. Well, I type fast, but I do wear out a...
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...
Comments posted to this topic are about the item SQL Art, Part 4: Happy...
Hubungi Cs: 0817844112 Jl. Asia Afrika No.122-124, Paledang, Kec. Lengkong, Kota Bandung, Jawa Barat...
Comments posted to this topic are about the item How We Handled a Vendor...
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