I'm having a problem sorting my tables in MYSQL.
I have my tables setup like this:
Order_details
- Order_ID
- shipping_cost
- printed
Product_details
- ID
- Order_ID
- SKU_location
I want to SELECT all orders WHERE printed = FALSE but also sort by the shipping costs and THEN by the SKU_location
How can I join the tables into one query so it sorts by shipping_cost and SKU_location where printed = false?