Skip to content

Latest commit

 

History

History
48 lines (39 loc) · 1.49 KB

step5-astra.md

File metadata and controls

48 lines (39 loc) · 1.49 KB
Shopping Cart Data Modeling ℹ️ For technical support, please contact us via email or LinkedIn.
⬅️ Back Step 5 of 10 Next ➡️
Design query Q4

✅ Find ids and names of all shopping carts that belong to user jen; order by cart name (asc):

Solution
SELECT user_id, cart_name, 
       cart_id, cart_is_active
FROM carts_by_user
WHERE user_id = 'jen';
⬅️ Back Next ➡️