#1013

Price Without Extra Math

The catalog currently checks doubled price against the threshold 24, making the lookup heavier than needed. Rewrite it as a direct comparison of price to the equivalent threshold 12, keeping the result sorted by id.

Original query
SELECT * FROM products WHERE price * 2 > 24 ORDER BY id

Expected output sample

This is what a correct answer looks like — its row count is its own, it doesn't have to match the schema tables.

idnamepricestockcategory
4Lamp2515home

Your query result will appear here