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

Query time 0.00201

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "3.15"
    },
    "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": 9,
      "rows_produced_per_join": 0,
      "filtered": "3.33",
      "cost_info": {
        "read_cost": "2.25",
        "eval_cost": "0.03",
        "prefix_cost": "3.15",
        "data_read_per_join": "3K"
      },
      "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))"
    }
  }
}