What is ChatGPT – Is it the rise of the Skynet era?
An interesting conversation with the ChatGPT artif...
2023-02-13
13,322 reads
An interesting conversation with the ChatGPT artif...
2023-02-13
13,322 reads
This article shows how you can use an R script to import data into Power BI.
2023-01-23
2,084 reads
In this article, you will learn how you can add the map and image visuals to your Power BI report and have them update as you select different data values.
2023-01-16
2,112 reads
Introduction In this article, we will learn to create a Power BI report using MySQL data. The article will teach us to use the MySQL Workbench (something like the SSMS, but for MySQL). We will do the following in this article. First, we will connect and create a database in MySQL. Secondly, we will create a […]
2023-01-09
4,534 reads
In this article, we will learn how to use a REST API from Power BI to get data for a report.
2022-12-16
24,742 reads
Learn how you can use PostgreSQL data in a Power BI report.
2022-11-14
6,384 reads
Learn a bit about MDX and how you can incorporate it into your Power BI reports.
2022-11-07
14,146 reads
Learn how to use Python code with Azure Data Studio to work with SQL Server data.
2022-10-03
14,412 reads
In this fourth part of the series, we look at various other plot types in Power BI using Python.
2022-09-26
1,522 reads
In Part 3, we look at how to use Python to create more charts for Power BI.
2022-09-19
1,711 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