Amazon charges long-term storage fees on units sitting in FBA for over 181 days, and surcharges on units over 365 days. This query shows your inventory age distribution by SKU so you can act before the fees hit.
This is part of the Taptic Data Amazon query library. Explore related queries: SQL query for Amazon return rate by SKU, SQL query for Amazon net margin after FBA fees, SQL query for Amazon buy box percentage by ASIN, and more.
The question
The SQL Taptic generates
SELECT inv.sku, inv.condition, inv.sellable_quantity, inv.unsellable_quantity, inv.in_bound_quantity, inv.inv_age_0_to_90_days AS age_0_90, inv.inv_age_91_to_180_days AS age_91_180, inv.inv_age_181_to_270_days AS age_181_270, inv.inv_age_271_to_365_days AS age_271_365, inv.inv_age_365_plus_days AS age_365_plus, COALESCE(inv.inv_age_181_to_270_days, 0) + COALESCE(inv.inv_age_271_to_365_days, 0) + COALESCE(inv.inv_age_365_plus_days, 0) AS units_at_risk, ROUND( (COALESCE(inv.inv_age_181_to_270_days, 0) + COALESCE(inv.inv_age_271_to_365_days, 0)) * 3.80 + COALESCE(inv.inv_age_365_plus_days, 0) * 6.90 , 2) AS estimated_lts_fee FROM amazon_fba_inventory inv WHERE inv.sellable_quantity > 0 ORDER BY estimated_lts_fee DESC LIMIT 40
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
Per-SKU inventory breakdown by age bucket with estimated long-term storage fees โ sorted by highest fee liability.
Why it matters
FAQ
Generate this automatically
In Taptic Data, you type "Show me FBA inventory aging by SKU with days in warehouse an..." 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.
Compare tools