我正在我的数据库中记录与此相关的人的姓名对应的总值:
$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
}
这似乎一直工作正常,但是今天我注意到它会返回两组单独的数字,用于“凯特琳”,当它们应该在一起时。这是phpma中查询的截图
什么可能导致这种情况?