Bard, Google’s ChatGPT Competitor
See how the Google AI, Bard, works and answers questions about data topics.
2023-07-03
3,737 reads
See how the Google AI, Bard, works and answers questions about data topics.
2023-07-03
3,737 reads
A comparison of ChatGPT and the Bing Chat AI to see which one might be more useful for a user.
2023-06-05
5,207 reads
Introduction In this article, we will learn how to generate images with AI. This time we will work with DALL·E. DALL·E is an image generator using AI. You just need to provide a description and DALL·E will generate the image: In this article we will learn these topics: First, we will learn what is DALL·E […]
2023-05-22
3,959 reads
In this article, you will see how ChatGPT works with a database project.
2023-05-01
12,561 reads
Learn how you can connect ChatGPT to VS Code and use it to help you fix your code.
2023-04-10
68,174 reads
See how well ChatGPT works with questions on generating PowerShell code.
2023-03-20
14,245 reads
Introduction ChatGPT in SQL Server In this article, we will learn some basic examples of ChatGPT in SQL Server. In a previous article, we had an interview with ChatGPT an AI chatbot developed by OpenAI. If you do not know how to use it yet, you can go to that article. We will show some […]
2023-03-06
50,577 reads
An interesting conversation with the ChatGPT artif...
2023-02-13
13,292 reads
This article shows how you can use an R script to import data into Power BI.
2023-01-23
2,048 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,100 reads
By Vinay Thakur
Continuing from Day 3 where we covered LLM models open/closed and their parameters, Today...
By Steve Jones
One of the nice things about Flyway Desktop is that it helps you manage...
By HeyMo0sh
Microsoft Fabric (not to be confused with the more general term “fabric” in DevOps)...
I'm fairly certain I know the answer to this from digging into it yesterday,...
Hi Team, I am trying to refresh the Azure Synapse Dedicated pool from production...
hi everyone I am not sure how to write the query that will produce...
I have some data in a table:
CREATE TABLE #test_data
(
id INT PRIMARY KEY,
name VARCHAR(100),
birth_date DATE
);
-- Step 2: Insert rows
INSERT INTO #test_data
VALUES
(1, 'Olivia', '2025-01-05'),
(2, 'Emma', '2025-03-02'),
(3, 'Liam', '2025-11-15'),
(4, 'Noah', '2025-12-22');
If I run this query, how many rows are returned?
SELECT *
FROM OPENJSON(
(
SELECT t.* FROM #test_data AS t FOR JSON PATH
)
) t; See possible answers