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 ejercicio forma parte del curso
Introduction to SQL with AI
Instrucciones del ejercicio
- Write a prompt to display the first three products from the products table to get a quick preview of the data.
Ejercicio interactivo práctico
Prueba este ejercicio y completa el código de muestra.
SELECT *
FROM products;