SELECT 
  cscart_promotions.*, 
  cscart_promotion_descriptions.name, 
  cscart_promotion_descriptions.detailed_description, 
  cscart_promotion_descriptions.short_description, 
  cscart_promotion_images.promotion_image_id 
FROM 
  cscart_promotions 
  LEFT JOIN cscart_promotion_descriptions ON cscart_promotion_descriptions.promotion_id = cscart_promotions.promotion_id 
  AND cscart_promotion_descriptions.lang_code = 'en' 
  LEFT JOIN cscart_storefronts_promotions AS storefronts_promotions ON storefronts_promotions.promotion_id = cscart_promotions.promotion_id 
  LEFT JOIN cscart_promotion_images ON cscart_promotion_images.promotion_id = cscart_promotions.promotion_id 
  AND cscart_promotion_images.lang_code = 'en' 
WHERE 
  1 
  AND IF(
    from_date, from_date <= 1743696895, 
    1
  ) 
  AND IF(to_date, to_date >= 1743696895, 1) 
  AND status IN ('A') 
  AND (
    storefronts_promotions.storefront_id = 1 
    OR storefronts_promotions.storefront_id IS NULL
  ) 
  AND cscart_promotions.promotion_id NOT IN (25, 26, 27) 
ORDER BY 
  cscart_promotions.priority asc

Query time 0.00480

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "7.43"
    },
    "ordering_operation": {
      "using_temporary_table": true,
      "using_filesort": true,
      "cost_info": {
        "sort_cost": "1.00"
      },
      "nested_loop": [
        {
          "table": {
            "table_name": "cscart_promotions",
            "access_type": "ALL",
            "possible_keys": [
              "PRIMARY"
            ],
            "rows_examined_per_scan": 9,
            "rows_produced_per_join": 1,
            "filtered": "11.11",
            "cost_info": {
              "read_cost": "2.60",
              "eval_cost": "0.20",
              "prefix_cost": "2.80",
              "data_read_per_join": "80"
            },
            "used_columns": [
              "promotion_id",
              "company_id",
              "conditions",
              "bonuses",
              "to_date",
              "from_date",
              "priority",
              "stop",
              "stop_other_rules",
              "zone",
              "conditions_hash",
              "status",
              "number_of_usages",
              "users_conditions_hash"
            ],
            "attached_condition": "(if(`twebezli_Commercemodalpopup`.`cscart_promotions`.`from_date`,(`twebezli_Commercemodalpopup`.`cscart_promotions`.`from_date` <= 1743696895),1) and if(`twebezli_Commercemodalpopup`.`cscart_promotions`.`to_date`,(`twebezli_Commercemodalpopup`.`cscart_promotions`.`to_date` >= 1743696895),1) and (`twebezli_Commercemodalpopup`.`cscart_promotions`.`status` = 'A') and (`twebezli_Commercemodalpopup`.`cscart_promotions`.`promotion_id` not in (25,26,27)))"
          }
        },
        {
          "table": {
            "table_name": "cscart_promotion_descriptions",
            "access_type": "eq_ref",
            "possible_keys": [
              "PRIMARY"
            ],
            "key": "PRIMARY",
            "used_key_parts": [
              "promotion_id",
              "lang_code"
            ],
            "key_length": "9",
            "ref": [
              "twebezli_Commercemodalpopup.cscart_promotions.promotion_id",
              "const"
            ],
            "rows_examined_per_scan": 1,
            "rows_produced_per_join": 1,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "1.00",
              "eval_cost": "0.20",
              "prefix_cost": "4.00",
              "data_read_per_join": "800"
            },
            "used_columns": [
              "promotion_id",
              "name",
              "short_description",
              "detailed_description",
              "lang_code"
            ]
          }
        },
        {
          "table": {
            "table_name": "storefronts_promotions",
            "access_type": "index",
            "key": "idx_storefront_id",
            "used_key_parts": [
              "storefront_id"
            ],
            "key_length": "4",
            "rows_examined_per_scan": 1,
            "rows_produced_per_join": 1,
            "filtered": "100.00",
            "using_index": true,
            "using_join_buffer": "Block Nested Loop",
            "cost_info": {
              "read_cost": "1.03",
              "eval_cost": "0.20",
              "prefix_cost": "5.23",
              "data_read_per_join": "16"
            },
            "used_columns": [
              "storefront_id",
              "promotion_id"
            ],
            "attached_condition": "(<if>(found_match(storefronts_promotions), ((`twebezli_Commercemodalpopup`.`storefronts_promotions`.`storefront_id` = 1) or isnull(`twebezli_Commercemodalpopup`.`storefronts_promotions`.`storefront_id`)), true) and <if>(is_not_null_compl(storefronts_promotions), (`twebezli_Commercemodalpopup`.`storefronts_promotions`.`promotion_id` = `twebezli_Commercemodalpopup`.`cscart_promotions`.`promotion_id`), true))"
          }
        },
        {
          "table": {
            "table_name": "cscart_promotion_images",
            "access_type": "eq_ref",
            "possible_keys": [
              "promo"
            ],
            "key": "promo",
            "used_key_parts": [
              "promotion_id",
              "lang_code"
            ],
            "key_length": "10",
            "ref": [
              "twebezli_Commercemodalpopup.cscart_promotions.promotion_id",
              "const"
            ],
            "rows_examined_per_scan": 1,
            "rows_produced_per_join": 1,
            "filtered": "100.00",
            "using_index": true,
            "cost_info": {
              "read_cost": "1.00",
              "eval_cost": "0.20",
              "prefix_cost": "6.43",
              "data_read_per_join": "16"
            },
            "used_columns": [
              "promotion_image_id",
              "promotion_id",
              "lang_code"
            ],
            "attached_condition": "<if>(is_not_null_compl(cscart_promotion_images), (`twebezli_Commercemodalpopup`.`cscart_promotion_images`.`promotion_id` = `twebezli_Commercemodalpopup`.`cscart_promotions`.`promotion_id`), true)"
          }
        }
      ]
    }
  }
}

Result

promotion_id company_id conditions bonuses to_date from_date priority stop stop_other_rules zone conditions_hash status number_of_usages users_conditions_hash name detailed_description short_description promotion_image_id
24 0 a:3:{s:3:"set";s:3:"all";s:9:"set_value";s:1:"1";s:10:"conditions";a:2:{i:1;a:3:{s:8:"operator";s:3:"gte";s:9:"condition";s:8:"subtotal";s:5:"value";d:100;}i:2;a:3:{s:8:"operator";s:2:"eq";s:9:"condition";s:11:"coupon_code";s:5:"value";s:3:"123";}}} a:1:{i:1;a:2:{s:5:"bonus";s:13:"free_shipping";s:5:"value";s:1:"1";}} 0 0 1 N N cart subtotal=100;coupon_code=123 A 0 Free shipping <p>We'll ship any order above $100 for free</p> 10
23 0 a:3:{s:3:"set";s:3:"all";s:9:"set_value";s:1:"1";s:10:"conditions";a:1:{i:5;a:3:{s:8:"operator";s:2:"in";s:9:"condition";s:8:"products";s:5:"value";a:1:{i:1267114885;a:2:{s:10:"product_id";s:3:"248";s:6:"amount";s:1:"1";}}}}} a:1:{i:3;a:4:{s:5:"bonus";s:20:"discount_on_products";s:5:"value";s:3:"248";s:14:"discount_bonus";s:13:"by_percentage";s:14:"discount_value";d:5;}} 0 0 2 N N cart products=1267114885 A 0 X-Box discount <p>5% off the price of this gaming console</p> 9
15 0 a:3:{s:3:"set";s:3:"all";s:9:"set_value";s:1:"1";s:10:"conditions";a:2:{i:1;a:3:{s:8:"operator";s:3:"gte";s:9:"condition";s:8:"subtotal";s:5:"value";d:100;}i:2;a:3:{s:8:"operator";s:2:"eq";s:9:"condition";s:11:"coupon_code";s:5:"value";s:7:"sale-20";}}} a:1:{i:1;a:3:{s:5:"bonus";s:14:"order_discount";s:14:"discount_bonus";s:13:"by_percentage";s:14:"discount_value";s:2:"20";}} 0 0 3 N N cart subtotal=100;coupon_code=sale-20 A 5 20% discount coupon <p>Get 20% off your order with the bonus code "sale-20"</p> 6
19 0 a:3:{s:3:"set";s:3:"all";s:9:"set_value";s:1:"1";s:10:"conditions";a:2:{i:1;a:3:{s:8:"operator";s:2:"eq";s:9:"condition";s:8:"shipping";s:5:"value";s:1:"1";}i:2;a:3:{s:8:"operator";s:3:"gte";s:9:"condition";s:8:"subtotal";s:5:"value";d:100;}}} a:1:{i:1;a:3:{s:5:"bonus";s:14:"order_discount";s:14:"discount_bonus";s:8:"by_fixed";s:14:"discount_value";s:1:"8";}} 0 0 4 N N cart shipping=1;subtotal=100 A 7 Discount on pick-up <p>$8 off for collecting orders from our store</p> 8
18 0 a:3:{s:3:"set";s:3:"all";s:9:"set_value";s:1:"1";s:10:"conditions";a:1:{i:1;a:3:{s:8:"operator";s:2:"eq";s:9:"condition";s:11:"coupon_code";s:5:"value";s:8:"EMAIL-10";}}} a:1:{i:1;a:3:{s:5:"bonus";s:14:"order_discount";s:14:"discount_bonus";s:13:"by_percentage";s:14:"discount_value";s:2:"10";}} 0 0 5 N N cart coupon_code=EMAIL-10 A 0 DEMO Store discount <p>10% off our entire range of products</p> 7