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 (41, 42, 43, 10, 9, 7, 8)

Query time 0.00055

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost": 0.013381,
    "nested_loop": [
      {
        "table": {
          "table_name": "b",
          "access_type": "range",
          "possible_keys": ["PRIMARY"],
          "key": "PRIMARY",
          "key_length": "3",
          "used_key_parts": ["page_id"],
          "loops": 1,
          "rows": 4,
          "cost": 0.00816484,
          "filtered": 100,
          "attached_condition": "b.page_id in (41,42,43,10,9,7,8)"
        }
      },
      {
        "table": {
          "table_name": "u",
          "access_type": "eq_ref",
          "possible_keys": ["PRIMARY"],
          "key": "PRIMARY",
          "key_length": "3",
          "used_key_parts": ["user_id"],
          "ref": ["u985510652_ecartify.b.user_id"],
          "loops": 4,
          "rows": 1,
          "cost": 0.00521616,
          "filtered": 100
        }
      }
    ]
  }
}

Result

author page_id
Admin Admin 7
Admin Admin 8
Admin Admin 9
Admin Admin 10