SELECT 
  cscart_pages.*, 
  cscart_page_descriptions.*, 
  cscart_seo_names.name as seo_name, 
  cscart_seo_names.path as seo_path 
FROM 
  cscart_pages 
  LEFT JOIN cscart_page_descriptions ON cscart_pages.page_id = cscart_page_descriptions.page_id 
  AND cscart_page_descriptions.lang_code = 'en' 
  LEFT JOIN cscart_seo_names ON cscart_seo_names.object_id = cscart_pages.page_id 
  AND cscart_seo_names.type = 'a' 
  AND cscart_seo_names.dispatch = '' 
  AND cscart_seo_names.lang_code = 'en' 
  INNER JOIN cscart_ult_objects_sharing ON (
    cscart_ult_objects_sharing.share_object_id = cscart_pages.page_id 
    AND cscart_ult_objects_sharing.share_company_id = 1 
    AND cscart_ult_objects_sharing.share_object_type = 'pages'
  ) 
WHERE 
  1 
  AND cscart_pages.parent_id IN (7) 
  AND cscart_pages.status IN ('A') 
  AND cscart_pages.page_type IN ('B') 
  AND (
    cscart_pages.usergroup_ids = '' 
    OR FIND_IN_SET(0, cscart_pages.usergroup_ids) 
    OR FIND_IN_SET(1, cscart_pages.usergroup_ids)
  ) 
  AND (
    cscart_pages.use_avail_period = 'N' 
    OR (
      cscart_pages.use_avail_period = 'Y' 
      AND cscart_pages.avail_from_timestamp <= 1774318753 
      AND (
        cscart_pages.avail_till_timestamp >= 1774318753 
        OR cscart_pages.avail_till_timestamp = 0
      )
    )
  ) 
ORDER BY 
  cscart_pages.timestamp desc 
LIMIT 
  0, 10

Query time 0.00824

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "0.45"
    },
    "ordering_operation": {
      "using_filesort": true,
      "nested_loop": [
        {
          "table": {
            "table_name": "cscart_pages",
            "access_type": "ref",
            "possible_keys": [
              "PRIMARY",
              "parent_id"
            ],
            "key": "parent_id",
            "used_key_parts": [
              "parent_id"
            ],
            "key_length": "3",
            "ref": [
              "const"
            ],
            "rows_examined_per_scan": 1,
            "rows_produced_per_join": 0,
            "filtered": "6.67",
            "cost_info": {
              "read_cost": "0.25",
              "eval_cost": "0.01",
              "prefix_cost": "0.35",
              "data_read_per_join": "169"
            },
            "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",
              "facebook_obj_type"
            ],
            "attached_condition": "((`aerokidsshop`.`cscart_pages`.`status` = 'A') and (`aerokidsshop`.`cscart_pages`.`page_type` = 'B') and ((`aerokidsshop`.`cscart_pages`.`usergroup_ids` = '') or (0 <> find_in_set(0,`aerokidsshop`.`cscart_pages`.`usergroup_ids`)) or (0 <> find_in_set(1,`aerokidsshop`.`cscart_pages`.`usergroup_ids`))) and ((`aerokidsshop`.`cscart_pages`.`use_avail_period` = 'N') or ((`aerokidsshop`.`cscart_pages`.`use_avail_period` = 'Y') and (`aerokidsshop`.`cscart_pages`.`avail_from_timestamp` <= 1774318753) and ((`aerokidsshop`.`cscart_pages`.`avail_till_timestamp` >= 1774318753) or (`aerokidsshop`.`cscart_pages`.`avail_till_timestamp` = 0)))))"
          }
        },
        {
          "table": {
            "table_name": "cscart_page_descriptions",
            "access_type": "eq_ref",
            "possible_keys": [
              "PRIMARY"
            ],
            "key": "PRIMARY",
            "used_key_parts": [
              "page_id",
              "lang_code"
            ],
            "key_length": "9",
            "ref": [
              "aerokidsshop.cscart_pages.page_id",
              "const"
            ],
            "rows_examined_per_scan": 1,
            "rows_produced_per_join": 0,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "0.05",
              "eval_cost": "0.01",
              "prefix_cost": "0.41",
              "data_read_per_join": "257"
            },
            "used_columns": [
              "page_id",
              "lang_code",
              "page",
              "description",
              "meta_keywords",
              "meta_description",
              "page_title",
              "link"
            ]
          }
        },
        {
          "table": {
            "table_name": "cscart_ult_objects_sharing",
            "access_type": "eq_ref",
            "possible_keys": [
              "PRIMARY"
            ],
            "key": "PRIMARY",
            "used_key_parts": [
              "share_object_id",
              "share_company_id",
              "share_object_type"
            ],
            "key_length": "159",
            "ref": [
              "aerokidsshop.cscart_pages.page_id",
              "const",
              "const"
            ],
            "rows_examined_per_scan": 1,
            "rows_produced_per_join": 0,
            "filtered": "100.00",
            "using_index": true,
            "cost_info": {
              "read_cost": "0.02",
              "eval_cost": "0.01",
              "prefix_cost": "0.43",
              "data_read_per_join": "10"
            },
            "used_columns": [
              "share_company_id",
              "share_object_id",
              "share_object_type"
            ],
            "attached_condition": "(`aerokidsshop`.`cscart_ult_objects_sharing`.`share_object_id` = `aerokidsshop`.`cscart_pages`.`page_id`)"
          }
        },
        {
          "table": {
            "table_name": "cscart_seo_names",
            "access_type": "ref",
            "possible_keys": [
              "PRIMARY",
              "dispatch"
            ],
            "key": "PRIMARY",
            "used_key_parts": [
              "object_id",
              "type",
              "dispatch",
              "lang_code"
            ],
            "key_length": "206",
            "ref": [
              "aerokidsshop.cscart_pages.page_id",
              "const",
              "const",
              "const"
            ],
            "rows_examined_per_scan": 1,
            "rows_produced_per_join": 0,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "0.02",
              "eval_cost": "0.01",
              "prefix_cost": "0.45",
              "data_read_per_join": "115"
            },
            "used_columns": [
              "name",
              "object_id",
              "company_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 facebook_obj_type lang_code page description meta_keywords meta_description page_title link seo_name seo_path
8 1 7 7/8 A B 0 1415260800 0 0 N 0 0 activity en Discover Joy and Learning at Aerokids Shop <p>Welcome to Aerokids Shop, a proud extension of Aerokids Education Pvt. Ltd., a leader in preschool education in India. Since our establishment in 2012, Aerokids Education Pvt. Ltd. has grown into a robust network of over 100 branches nationwide, dedicated to nurturing young minds and laying a solid foundation for their educational journey.</p><h3>Explore Our Extensive Range of Products</h3> <p>At Aerokids Shop, we are committed to excellence, offering a wide range of high-quality children's products. Our extensive selection includes:</p> <ul><li><strong>Apparel</strong>: Trendy and comfortable clothing for children.</li><li><strong>Footwear</strong>: Stylish and durable shoes for all occasions.</li><li><strong>Educational Toys</strong>: Engaging toys that combine fun and learning.</li><li><strong>Children's Books</strong>: A diverse collection of books to spark imagination and knowledge.</li></ul> <p>We specialize in merchandise and school supplies, ensuring that every child's needs are met with products that combine both fun and learning.<br><span style="color: var(--redactor2-fg-heading); font-size: 24px; font-weight: 700;"><br>Aerokids - Footwear Fun for Growing Kids</span><br></p> <p>Discover our stylish and durable footwear designed to support your child's growth and activities. Visit our Amazon seller store page <a href="https://www.amazon.in/stores/AEROKIDS/page/BEA3DE06-A715-4067-A38A-06B7A5EA3409?ref_=ast_bln" rel="noreferrer" target="_new">here</a>.<br><br><span style="color: var(--redactor2-fg-heading); font-size: 24px; font-weight: 700;">Curriculum Solutions and School Management</span><br></p> <p>Beyond our shop, Aerokids Education Pvt. Ltd. provides comprehensive curriculum solutions aligned with the National Education Policy (NEP) 2020. We are dedicated to enhancing the educational experience with our school management portal, <a href="https://myschoolmanage.com/" rel="noreferrer" target="_new">myschoolmanage.com</a>. This portal streamlines administrative tasks, making school management efficient and effective.<br><span style="color: var(--redactor2-fg-heading); font-size: 24px; font-weight: 700;"><br>Enriching Learning Through Multimedia</span><br></p> <p>We are also committed to enriching children's learning through multimedia. Our YouTube channel features educational videos, rhymes, and stories designed to captivate and educate young minds. Visit our YouTube channel <a href="https://www.youtube.com/channel/UClyDi5xjhD8YdvPyByzX4CA" rel="noreferrer" target="_new">here</a> to explore our engaging content.<br><span style="color: var(--redactor2-fg-heading); font-size: 24px; font-weight: 700;"><br>Convenient Shopping Experience</span><br></p> <p>Our products are conveniently available on major online marketplaces such as Amazon and Flipkart, making it easy for parents and educators to access the best for their children. At Aerokids Shop, we strive to provide an enriching shopping experience that supports the holistic development of every child.</p><h3>Visit Us Online</h3> <p>Discover more about our offerings and services by visiting our websites:</p> <ul><li><a href="http://www.aerokidsindia.com/" rel="noreferrer" target="_new">Aerokids India</a></li><li><a href="http://www.aerokidsshop.com/" rel="noreferrer" target="_new">Aerokids Shop</a></li></ul> <h3>Happy Shopping!</h3> <p>At Aerokids Shop, we believe in making every moment joyful and educational for your little ones. Explore our diverse range of products designed to bring smiles and spark creativity. From trendy apparel to engaging educational toys, we have everything you need to create a world of happiness for your kids.</p> <p><strong>Discover Joy, Discover Learning!</strong></p> <p>Thank you for choosing Aerokids Shop. We look forward to being a part of your child's joyful and educational journey.</p><p><br></p><p><br></p> check-out-cs-cart-marketplace 7