SELECT 
  CONCAT(u.firstname, ' ', u.lastname) 
FROM 
  cscart_blog_authors as b 
  LEFT JOIN cscart_users as u ON b.user_id = u.user_id 
WHERE 
  b.page_id = 7

Query time 0.00019

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost": 0.00355143,
    "nested_loop": [
      {
        "table": {
          "table_name": "b",
          "access_type": "ref",
          "possible_keys": ["PRIMARY"],
          "key": "PRIMARY",
          "key_length": "3",
          "used_key_parts": ["page_id"],
          "ref": ["const"],
          "loops": 1,
          "rows": 1,
          "cost": 0.00183779,
          "filtered": 100
        }
      },
      {
        "table": {
          "table_name": "u",
          "access_type": "eq_ref",
          "possible_keys": ["PRIMARY"],
          "key": "PRIMARY",
          "key_length": "3",
          "used_key_parts": ["user_id"],
          "ref": ["u985510652_ecartify_dev.b.user_id"],
          "loops": 1,
          "rows": 1,
          "cost": 0.00171364,
          "filtered": 100
        }
      }
    ]
  }
}

Result

CONCAT(u.firstname, ' ', u.lastname)
Adminasdsadasd Admin