SELECT 
  video_id 
FROM 
  cscart_cp_video_category_links 
WHERE 
  category_id IN(1)

Query time 0.00073

JSON explain

{
  "query_block": {
    "select_id": 1,
    "table": {
      "table_name": "cscart_cp_video_category_links",
      "access_type": "ref",
      "possible_keys": ["PRIMARY"],
      "key": "PRIMARY",
      "key_length": "3",
      "used_key_parts": ["category_id"],
      "ref": ["const"],
      "rows": 45,
      "filtered": 100,
      "using_index": true
    }
  }
}

Result

video_id
1
6
7
8
9
10
11
12
14
15
16
17
18
20
21
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
44
45
46
47
49
50
51
54
55
56
57