New toys in SQL Server 2012
In this article we are going to look two new enhancements: the Insert snippet menu option and the surround with option.
2014-09-01 (first published: 2012-05-15)
18,728 reads
In this article we are going to look two new enhancements: the Insert snippet menu option and the surround with option.
2014-09-01 (first published: 2012-05-15)
18,728 reads
This is a continuation of first article about Data Mining. We will talk about decision trees.
2014-08-29 (first published: 2012-12-31)
20,041 reads
This is a continuation of first article about Data Mining. We will talk about decision trees.
2014-08-29 (first published: 2012-12-31)
19,230 reads
In this lesson, we will show different components to Administer the Data Mining Models with SSIS.
2014-08-28
2,955 reads
In this lesson, we will show different components to Administer the Data Mining Models with SSIS.
2014-08-28
2,750 reads
In this chapter we will explain how to work with Data Mining models and the Integration Services. Specifically, we will talk about the Data Mining Query Task in SSIS.
2014-08-21
3,005 reads
In this chapter we will explain how to work with Data Mining models and the Integration Services. Specifically, we will talk about the Data Mining Query Task in SSIS.
2014-08-21
2,601 reads
In this lesson we will explain how to create scripts to manage Data Mining Models using Powershell.
2014-08-12
6,676 reads
In this lesson we will explain how to create scripts to manage Data Mining Models using Powershell.
2014-08-12
5,718 reads
In this lesson we will learn the basics of DMX and create some samples.
2014-07-21
3,656 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