Generating tSQLt tests from a dacpac
Generating tSQLt tests from a dacpac
I use SSDT and tSQLt in my work and I am always interested in productivity...
2015-04-02
1,284 reads
Generating tSQLt tests from a dacpac
I use SSDT and tSQLt in my work and I am always interested in productivity...
2015-04-02
1,284 reads
I was reading a white paper from a Sql Server tools vendor about how to integrate their tools with SSDT...
2015-04-02
546 reads
I was reading a white paper from a Sql Server tools vendor about how to integrate their tools with SSDT and while it was very interesting there were a...
2015-04-02
10 reads
I was reading a white paper from a Sql Server tools vendor about how to integrate their tools with SSDT...
2015-04-02
24 reads
I was reading a white paper from a Sql Server tools vendor about how to integrate their tools with SSDT...
2015-04-02
44 reads
I was reading a white paper from a Sql Server tools vendor about how to integrate their tools with SSDT...
2015-04-02
15 reads
Calling all London/Sussex Sql Developers does this sound like you? Would you like to set up Continuous Integration or Continuous Deployment Do you want to get your databases...
2015-03-19
13 reads
Calling all London/Sussex Sql Developers does this sound like you? Would you like to set up Continuous Integration or Continuous...
2015-03-19
39 reads
Calling all London/Sussex Sql Developers does this sound like you? Would you like to set up Continuous Integration or Continuous...
2015-03-19
47 reads
Calling all London/Sussex Sql Developers does this sound like you?
Would you like to set up Continuous Integration or Continuous DeploymentDo...
2015-03-19
412 reads
By Arun Sirpal
Every DBA has a box like this. Sitting untouched for months. Nobody’s proud of...
By Steve Jones
I type fairly well. Well, I type fast, but I do wear out a...
By way of background, a while back I did video called “My New Favourite...
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