Limiting SQL output
The PoweredHomes database is growing. As you continue to explore the data, you're cautious of slowing down your queries while you test out some new analysis ideas.
You want to see a small sample to test your approach.
Cet exercice fait partie du cours
Introduction to SQL with AI
Instructions
- Write a prompt to display the first three products from the products table to get a quick preview of the data.
Exercice interactif pratique
Essayez cet exercice en complétant cet exemple de code.
SELECT *
FROM products;