你好,所以这个表有一些相等的值
到目前为止,这是我的查询
$stmt = $dbc->query("SELECT weight, GROUP_CONCAT(id) AS ids FROM tbl_weight GROUP BY weight HAVING COUNT(*) > 1");
while($row = $stmt->fetch(PDO::FETCH_ASSOC)) {
echo $row['ids'] . "<br />";
}
运行此查询时的输出是
我真正想要的是这样的
这怎么可能?