Your Tools
In many occupations, workers invest in their own tools. However we rarely do that in technology.
2015-02-19
264 reads
In many occupations, workers invest in their own tools. However we rarely do that in technology.
2015-02-19
264 reads
2015-02-18
596 reads
We still have problems with SQL Injection. Steve Jones has a few thoughts on why.
2015-02-17
314 reads
2015-02-16
78 reads
Experience matters in setting your salary, but Steve Jones reminds us there are different types of experience, and there's more to life than money.
2015-02-16 (first published: 2010-08-31)
1,097 reads
Steve Jones talks about starting a new job and the need to get up to speed quickly, perhaps by being prepared on day 1.
2015-02-12
232 reads
How can we ship safe, and ship often? Steve Jones has a few comments on the need for better engineering.
2015-02-11
93 reads
Chris Testa-O'Neil on the origins of SQL Bits and the joys of community events.
2015-02-10
155 reads
In which Phil Factor casts doubts on 'programming policies'. For certain, any IT team development requires plenty of methods of working that maximise productivity, but coding standards and ‘best practices’ have to be treated with caution. Programming rules can’t replace professional judgement
2015-02-09
210 reads
Inspired by the movie with the same name, Steve Jones has a Friday poll about inspiration and ideas.
2015-02-06 (first published: 2010-08-06)
208 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...
WA:08218154393 Jl. Kertajaya No.35, Airlangga, Kec. Gubeng, Surabaya, Jawa Timur 60281
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