SELECT 
  ushop_pages.*, 
  ushop_page_descriptions.*, 
  ushop_seo_names.name as seo_name, 
  ushop_seo_names.path as seo_path 
FROM 
  ushop_pages 
  INNER JOIN ushop_page_descriptions ON ushop_pages.page_id = ushop_page_descriptions.page_id 
  LEFT JOIN ushop_seo_names ON ushop_seo_names.object_id = ushop_pages.page_id 
  AND ushop_seo_names.type = 'a' 
  AND ushop_seo_names.dispatch = '' 
  AND ushop_seo_names.lang_code = 'es' 
WHERE 
  ushop_pages.page_id = 42 
  AND ushop_page_descriptions.lang_code = 'es' 
  AND (
    ushop_pages.usergroup_ids = '' 
    OR FIND_IN_SET(0, ushop_pages.usergroup_ids) 
    OR FIND_IN_SET(1, ushop_pages.usergroup_ids)
  ) 
  AND ushop_pages.page_type IN ('T', 'L', 'B', 'K', 'F', 'P')

Query time 0.00271

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "0.35"
    },
    "nested_loop": [
      {
        "table": {
          "table_name": "ushop_pages",
          "access_type": "const",
          "possible_keys": [
            "PRIMARY"
          ],
          "key": "PRIMARY",
          "used_key_parts": [
            "page_id"
          ],
          "key_length": "3",
          "ref": [
            "const"
          ],
          "rows_examined_per_scan": 1,
          "rows_produced_per_join": 1,
          "filtered": "100.00",
          "cost_info": {
            "read_cost": "0.00",
            "eval_cost": "0.10",
            "prefix_cost": "0.00",
            "data_read_per_join": "2K"
          },
          "used_columns": [
            "page_id",
            "company_id",
            "parent_id",
            "id_path",
            "status",
            "page_type",
            "position",
            "timestamp",
            "usergroup_ids",
            "localization",
            "new_window",
            "use_avail_period",
            "avail_from_timestamp",
            "avail_till_timestamp",
            "abt__ut2_microdata_schema_type"
          ]
        }
      },
      {
        "table": {
          "table_name": "ushop_page_descriptions",
          "access_type": "const",
          "possible_keys": [
            "PRIMARY"
          ],
          "key": "PRIMARY",
          "used_key_parts": [
            "page_id",
            "lang_code"
          ],
          "key_length": "9",
          "ref": [
            "const",
            "const"
          ],
          "rows_examined_per_scan": 1,
          "rows_produced_per_join": 1,
          "filtered": "100.00",
          "cost_info": {
            "read_cost": "0.00",
            "eval_cost": "0.10",
            "prefix_cost": "0.00",
            "data_read_per_join": "3K"
          },
          "used_columns": [
            "page_id",
            "lang_code",
            "page",
            "description",
            "meta_keywords",
            "meta_description",
            "page_title",
            "link"
          ]
        }
      },
      {
        "table": {
          "table_name": "ushop_seo_names",
          "access_type": "ref",
          "possible_keys": [
            "PRIMARY",
            "dispatch"
          ],
          "key": "PRIMARY",
          "used_key_parts": [
            "object_id",
            "type",
            "dispatch",
            "lang_code"
          ],
          "key_length": "206",
          "ref": [
            "const",
            "const",
            "const",
            "const"
          ],
          "rows_examined_per_scan": 1,
          "rows_produced_per_join": 1,
          "filtered": "100.00",
          "cost_info": {
            "read_cost": "0.25",
            "eval_cost": "0.10",
            "prefix_cost": "0.35",
            "data_read_per_join": "1K"
          },
          "used_columns": [
            "name",
            "object_id",
            "type",
            "dispatch",
            "path",
            "lang_code"
          ]
        }
      }
    ]
  }
}

Result

page_id company_id parent_id id_path status page_type position timestamp usergroup_ids localization new_window use_avail_period avail_from_timestamp avail_till_timestamp abt__ut2_microdata_schema_type lang_code page description meta_keywords meta_description page_title link seo_name seo_path
42 0 0 42 A F 0 1758250800 0 0 N 0 0 es Contactanos <style> /* Formulario */ .ty-form-builder > form.cm-processed-form { max-width: 520px; /* ajusta el ancho si lo necesitás */ margin: 0 auto; padding: 16px; background: #ffffff; border-radius: 10px; } /* Contenido */ .ty-mainbox-body .buttons-container {background: #ffffff;} .ty-mainbox-container {background: #ffffff; padding: 10px; border-radius:10px} /* Encabezado de la página de contacto */ .contact-hero{ max-width: 860px; margin: 0 auto 12px auto; text-align: center; } .contact-hero h1{ margin: 6px 0 8px 0; font-size: 2rem; color:#222; } .contact-hero p{ margin: 0 auto; color:#555; } .contact-icon{ display:inline-block; width:64px; height:64px; margin-bottom: 8px; } </style> <section class="ty-mainbox-container contact-hero" aria-labelledby="titulo-contacto"> <!-- Icono accesible (sobre): --> <svg class="contact-icon" viewBox="0 0 24 24" role="img" aria-label="Contacto"> <path fill="#007bff" d="M20 4H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h16a2 2 0 0 0 2-2V6c0-1.1-.9-2-2-2Zm0 4.5-8 5-8-5V6l8 5 8-5v2.5Z"></path> </svg> <h1 id="titulo-contacto">Contacto</h1> <p>Escribinos para consultas, soporte o sugerencias. Respondemos por email o WhatsApp a la brevedad.</p></section> contacto