Buy box percentage is one of the strongest predictors of Amazon sales velocity. This query pulls it from your Sales & Traffic data and ranks your ASINs by buy box performance.
The question
The SQL Taptic generates
SELECT asin, ROUND(AVG(buy_box_percentage) * 100, 2) AS avg_buy_box_pct, SUM(units_ordered) AS units_ordered, ROUND(SUM(ordered_product_sales_amount), 2) AS revenue, COUNT(DISTINCT date) AS days_tracked FROM amazon_sales_traffic WHERE date::date >= CURRENT_DATE - INTERVAL '30 days' AND buy_box_percentage IS NOT NULL AND asin IS NOT NULL GROUP BY asin HAVING COUNT(DISTINCT date) >= 7 ORDER BY avg_buy_box_pct ASC LIMIT 50
This query was generated by Taptic Data from plain English against a real Amazon Seller Central schema. In Taptic, you type the question โ the AI writes the SQL, runs it, and returns the result. You can edit the SQL, ask for explanations, and save it as a refreshable report.
How this query works
What it returns
A ranked table of ASINs with their average buy box percentage, units ordered, revenue, and days tracked โ sorted worst-first so you can immediately identify and act on at-risk listings.
Why it matters
Generate this automatically
In Taptic Data, you type "Show me buy box percentage by ASIN for the last 30 days, ran..." and this SQL runs automatically against your real Amazon Seller Central data.
Try Taptic Free โ $29.99/moNo credit card required. Connect your data source in under 5 minutes.