SELECT 
  order_id 
FROM 
  ushop_orders 
WHERE 
  order_confirmation = 0 
  AND status = 'W' 
  AND order_status_update_timestamp > 0

Query time 0.00031

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "0.35"
    },
    "table": {
      "table_name": "ushop_orders",
      "access_type": "ref",
      "possible_keys": [
        "status"
      ],
      "key": "status",
      "used_key_parts": [
        "status"
      ],
      "key_length": "3",
      "ref": [
        "const"
      ],
      "rows_examined_per_scan": 1,
      "rows_produced_per_join": 0,
      "filtered": "5.00",
      "cost_info": {
        "read_cost": "0.25",
        "eval_cost": "0.01",
        "prefix_cost": "0.35",
        "data_read_per_join": "600"
      },
      "used_columns": [
        "order_id",
        "status",
        "order_status_update_timestamp",
        "order_confirmation"
      ],
      "attached_condition": "((`marketplace`.`ushop_orders`.`order_confirmation` = 0) and (`marketplace`.`ushop_orders`.`order_status_update_timestamp` > 0))"
    }
  }
}