我在数据库中有一个表,其中包含两列ID
和DATA
ID | DATA
-------------------------------------------------------------------------------
1 | Day by day ocean level is increasing because of global warming level
2 | Modern email operates across the Internet or other computer networks
注意: level
是row 1
中的重复字词,我只想要一次。
在这里,我想要来自DATA
列的唯一字词,如下所示:
必填项:
Day by ocean level is increasing because of global warming
Modern email operates across the Internet or other computer networks
提前致谢..
答案 0 :(得分:0)
我不知道,你能否使用PHP
。并不确定这种方法是否适合您。无论是什么,这都是一个解决方案..
使用data
检索sql query
并使用data
这样处理PHP
$text ="Day by day ocean level is increasing because of global warming level";
$str = implode(' ',array_unique(explode(' ', strtolower($text))));
echo ucfirst($str);
<强>结果:强>
Day by ocean level is increasing because of global warming