AI Chat With DBeaver Community Edition
DBeaver recently introduced interactive chat capabilities into the free, open-source Community Edition. What does that mean? It means some of your database tasks can be accomplished significantly faster ! First , you can ask for information without coding SQL. I love Structured Query Language, but it is much faster to write this prompt: What are the top ten most popular rentals and how much revenue did they generate? And faster than I look at the schema, the AI answers: -- This query finds the top 10 most rented films and the total revenue they generated. select f . film_id , f . title , count ( r . rental_id ) as rental_count , coalesce ( sum ( p . amount ), 0 ) as total_revenue from film f join inventory i on f . film_id = i . film_id join rental r on i . inventory_id = r . inventory_id left join payment p on r . rental_id = p . rental_id group by f . film_id , f . title order by rental_count desc , total_revenue desc limi...