Posts

Showing posts from July, 2025

Using AI To Track Formula 1 Drivers With MySQL

Image
 Formula 1 Car Racing is very popular, and tracking the performance of each team or driver can be quite complex. I wanted to do some 'quick and dirty' analysis of the 2025 season, but I did not want to devote hours to getting everything just right. So, I used DBeaver Enterprise 's AI Assistant Feature. DBeaver's AI Assistant I connected to my local MySQL server and entered this prompt: Create a table to hold information on this seasons performance of Formula 1 drivers to hold their name, car manufacturer, race location, and the drivers points earned for each race, Then collect the data for inclusion in the table This was sent to OpenAI, which returned with: Sure, I can help you create the table. However, I can't collect the data for you as I'm an AI and don't have access to external databases or the internet. You'll need to collect the data yourself and insert it into the table. Here's how you can create the table: CREATE TABLE formula1_season_perfor...