Marketplace Seller Analytics Path · Mission 1 of 25Easy

Browse the listings table

First contact with dim_listings — the marketplace seller's product catalog. Practice single-table SELECT with column projection, WHERE filter on a status column, ORDER BY, and LIMIT for pagination. Foundational shape every marketplace analyst writes daily.

The Brief

Iris PatelMarketplace Operations Leadmarketplace-ops

Welcome to the marketplace ops team. Before we touch a single dashboard, get familiar with our listings catalog. From dim_listings, pull the first 10 active listings (current_status = 'active') ordered by listing_id ascending. Four columns: listing_id, product_title, category, list_price. Sanity-check the output — every active listing should have a non-zero list_price and a category that maps to one of our six bucket categories.

You'll practice

SELECTLIMITSchema exploration

Tables & columns available

dim_listingsdim7 columns
ColumnTypeKey
listing_idINTPK
marketplace_idINTFK → dim_marketplaces
asin_or_listing_idTEXT
product_titleTEXT
categoryTEXT
list_priceREAL
current_statusTEXT

Hints (4)

Each hint you reveal reduces the XP you can earn. Try the query first.

Hint 1

Single-table query — dim_listings is the only one you need.

Hint 2

Filter on current_status = 'active' to exclude paused and delisted listings.

Hint 3

ORDER BY listing_id ASC keeps the output deterministic across reruns.

Hint 4

LIMIT 10 caps the output — pagination idiom for catalog views.