gpt4 book ai didi

mysql - 从记录中删除 HTML 标签

转载 作者:IT老高 更新时间:2023-10-28 23:47:05 25 4
gpt4 key购买 nike

需要帮助来形成 MYSQL 查询来自表一列,内容如下

Row1 : this is first <a href='mytext.txt'>row</a> from the table

Row 2 : THis is the second row <img src ='mytext.jpg'> my image is there

Row 3 : <p>This is the Third row my mytext is there </p>

Row 4 : <p class='te_mytext'>This is the Third row my text is there </p>

这是表格行,我尝试将关键字搜索为“mytext”

我的问题是

SELECT * from table  WHERE colmn_name ` like '%mytext%' "

我将得到所有 4 行作为结果,但结果是错误的。我需要获得正确的输出,因为只有第 3 行。此行只有内容中的 mytext 的原因所有其他内容都不在内容中,但所有行中都有 mytext

如何编写 MySQL 查询?

最佳答案

试试这个解决方案:我自己没试过,但显然有效。

来源:http://forums.mysql.com/read.php?52,177343,177985#msg-177985

   SET GLOBAL log_bin_trust_function_creators=1;
DROP FUNCTION IF EXISTS fnStripTags;
DELIMITER |
CREATE FUNCTION fnStripTags( Dirty varchar(4000) )
RETURNS varchar(4000)
DETERMINISTIC
BEGIN
DECLARE iStart, iEnd, iLength int;
WHILE Locate( '<', Dirty ) > 0 And Locate( '>', Dirty, Locate( '<', Dirty )) > 0 DO
BEGIN
SET iStart = Locate( '<', Dirty ), iEnd = Locate( '>', Dirty, Locate('<', Dirty ));
SET iLength = ( iEnd - iStart) + 1;
IF iLength > 0 THEN
BEGIN
SET Dirty = Insert( Dirty, iStart, iLength, '');
END;
END IF;
END;
END WHILE;
RETURN Dirty;
END;
|
DELIMITER ;
SELECT fnStripTags('this <html>is <b>a test</b>, nothing more</html>');

关于mysql - 从记录中删除 HTML 标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2627940/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com