How to Forecast Data in Power BI
Learn how you can use Power BI to forecase the future trends of data.
2025-05-26 (first published: 2023-02-27)
51,304 reads
Learn how you can use Power BI to forecase the future trends of data.
2025-05-26 (first published: 2023-02-27)
51,304 reads
See how ChatGPT can be used to analyze a dataset, produce charts, and train a model.
2025-05-12
402 reads
2025-04-28
492 reads
Learn how the DeepSeek GenAI LLM works and see how it produces SQL code.
2025-03-31
3,591 reads
Learn how to emulate Azure storage for files, blogs, and queues.
2025-02-24
1,740 reads
Learn how to create and modify a database project in Azure Data Studio.
2025-02-10
1,908 reads
2024-10-21
2,019 reads
2024-09-09
4,450 reads
Learn how to get started with Git and Visual Studio Code.
2024-08-05
6,295 reads
Learn how you can create and use a Jupyter Notebook in VS Code.
2024-07-22
4,622 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...
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