SELECT 
  CONCAT(u.firstname, ' ', u.lastname) as author, 
  b.page_id 
FROM 
  cscart_blog_authors as b 
  LEFT JOIN cscart_users as u ON b.user_id = u.user_id 
WHERE 
  b.page_id IN (
    138, 137, 136, 86, 77, 53, 60, 54, 52, 47, 
    46, 44, 45, 42, 43
  )

Query time 0.00069

JSON explain

{
  "query_block": {
    "select_id": 1,
    "table": {
      "table_name": "b",
      "access_type": "range",
      "possible_keys": ["PRIMARY"],
      "key": "PRIMARY",
      "key_length": "3",
      "used_key_parts": ["page_id"],
      "rows": 21,
      "filtered": 100,
      "attached_condition": "b.page_id in (138,137,136,86,77,53,60,54,52,47,46,44,45,42,43)",
      "using_index": true
    },
    "table": {
      "table_name": "u",
      "access_type": "eq_ref",
      "possible_keys": ["PRIMARY"],
      "key": "PRIMARY",
      "key_length": "3",
      "used_key_parts": ["user_id"],
      "ref": ["orbit_cscart_orbit_cscart.b.user_id"],
      "rows": 1,
      "filtered": 100
    }
  }
}

Result

author page_id
Администратор Главный 42
42
Администратор Главный 43
43
Администратор Главный 44
44
Администратор Главный 45
Администратор Главный 46
46
Администратор Главный 47
47
Администратор Главный 52
Администратор Главный 53
Администратор Главный 54
54
Администратор Главный 60
60
Администратор Главный 77
Администратор Главный 86
Дмитрий 136
Дмитрий 137
Елена Астафьева 137
Дмитрий 138