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.
Este exercício faz parte do curso
Introduction to SQL with AI
Instruções do exercício
- Write a prompt to display the first three products from the products table to get a quick preview of the data.
Exercício interativo prático
Experimente este exercício completando este código de exemplo.
SELECT *
FROM products;