gpt4 book ai didi

php - 检查 Mysql 中的重复值

转载 作者:行者123 更新时间:2023-11-29 13:20:04 28 4
gpt4 key购买 nike

我有一个具有以下结构的表格。

`post_id` int(5) NOT NULL AUTO_INCREMENT,
`post_title` varchar(250) NOT NULL,
`post_desc` text NOT NULL,
`post_siteid` int(5) NOT NULL

是否可以在 MySQL 或 PHP 中编写查询来检查存储在 post_desc 中的每个值(其类型为文本)与存储在同一 post_desc 中的所有其他值> 字段并返回是否重复,还返回文本重复的百分比以及与其重复的行?

最佳答案

SET @a = 'hello';
SET @b = 'hell';

SELECT ((LENGTH(@a)-LENGTH(REPLACE(@a,@b,'')))/LENGTH(@a))*100 x;
+---------+
| x |
+---------+
| 80.0000 |
+---------+

关于php - 检查 Mysql 中的重复值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20960736/

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