Get startedGet started for free

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.

This exercise is part of the course

Introduction to SQL with AI

View Course

Exercise instructions

  • Write a prompt to display the first three products from the products table to get a quick preview of the data.

Hands-on interactive exercise

Have a go at this exercise by completing this sample code.

SELECT *
FROM products;
Edit and Run Code