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

Query time 0.00220

JSON explain

{
  "query_block": {
    "select_id": 1,
    "table": {
      "table_name": "cscart_companies",
      "access_type": "ALL",
      "rows": 33,
      "filtered": 100,
      "attached_condition": "cscart_companies.`status` in ('A','P','S','N')"
    }
  }
}

Result

company_id
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33