SELECT 
  company_id 
FROM 
  cscart_companies 
WHERE 
  1 
  AND status IN ('A', 'P', 'N')

Query time 0.00020

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "5.81"
    },
    "table": {
      "table_name": "cscart_companies",
      "access_type": "ALL",
      "rows_examined_per_scan": 13,
      "rows_produced_per_join": 3,
      "filtered": "30.00",
      "cost_info": {
        "read_cost": "5.03",
        "eval_cost": "0.78",
        "prefix_cost": "5.81",
        "data_read_per_join": "60K"
      },
      "used_columns": [
        "company_id",
        "status"
      ],
      "attached_condition": "(`marketpl_db`.`cscart_companies`.`status` in ('A','P','N'))"
    }
  }
}

Result

company_id
116
115
117
118
119
120
121
122
123
124
125
126
127