gpt4 book ai didi

mysql - 数据库正在将两个相同的值处理为不同的?

转载 作者:行者123 更新时间:2023-11-30 01:09:12 26 4
gpt4 key购买 nike

我正在我的数据库中记录与此相关的人的姓名相对应的总值:

$sql = "SELECT distinct instr from table"; //instr is the name of the person in this case
$q = $db->prepare($sql);
$q->execute();
while($row = $q->fetch()){
//the rest of the stuff
}

这似乎一直工作得很好,但是今天我注意到它为“caitlin”返回了两组独立的数字,而它们应该在一起。这是 phpma 中查询的屏幕截图

screenshot

什么可能导致这种情况?

最佳答案

也许这样的事情可以解决您的问题:

$sql = "SELECT distinct TRIM(instr) from table";

关于mysql - 数据库正在将两个相同的值处理为不同的?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19567012/

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