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

Query time 0.00035

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "2.48"
    },
    "table": {
      "table_name": "cscart_companies",
      "access_type": "ALL",
      "rows_examined_per_scan": 2,
      "rows_produced_per_join": 1,
      "filtered": "50.00",
      "cost_info": {
        "read_cost": "2.28",
        "eval_cost": "0.20",
        "prefix_cost": "2.48",
        "data_read_per_join": "6K"
      },
      "used_columns": [
        "company_id",
        "status"
      ],
      "attached_condition": "(`sachinecarter_march_setup`.`cscart_companies`.`status` in ('A','P','S','N'))"
    }
  }
}

Result

company_id
1
2