Script to return Rows count from table using sp_ExecuteSQL
Script to return Rows count from table using sp_ExecuteSQL
2008-09-26 (first published: 2008-07-20)
1,541 reads
Script to return Rows count from table using sp_ExecuteSQL
2008-09-26 (first published: 2008-07-20)
1,541 reads
2008-09-19 (first published: 2008-07-20)
1,492 reads
2008-09-08 (first published: 2008-07-20)
1,276 reads
2008-07-20
2,008 reads
2008-07-20
1,634 reads
2008-01-29 (first published: 2007-11-23)
1,969 reads
2008-01-28 (first published: 2007-12-03)
1,705 reads
This script will delete all rows from the database, except system tables.
2007-11-26 (first published: 2007-09-30)
1,705 reads
2007-11-16
3,286 reads
2007-11-08
2,897 reads
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...
By ReviewMyDB
Index maintenance has always meant nightly jobs and a window you have to defend....
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