SELECT 
  product_id 
FROM 
  cscart_product_descriptions 
WHERE 
  lang_code = 'en' 
  AND (
    product LIKE '%教室前排的心动信号 疑若溪 免费阅读%' 
    OR full_description LIKE '%教室前排的心动信号 疑若溪 免费阅读%' 
    OR meta_keywords LIKE '%教室前排的心动信号 疑若溪 免费阅读%'
  ) 
LIMIT 
  5

Query time 0.51676

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost": 146.6488038,
    "nested_loop": [
      {
        "table": {
          "table_name": "cscart_product_descriptions",
          "access_type": "ALL",
          "loops": 1,
          "rows": 871563,
          "cost": 146.6488038,
          "filtered": 100,
          "attached_condition": "cscart_product_descriptions.lang_code = 'en' and (cscart_product_descriptions.product like '%教室前排的心动信号 疑若溪 免费阅读%' or cscart_product_descriptions.full_description like '%教室前排的心动信号 疑若溪 免费阅读%' or cscart_product_descriptions.meta_keywords like '%教室前排的心动信号 疑若溪 免费阅读%')"
        }
      }
    ]
  }
}