我需要从表中获取结果,但如果重复,我只想保留第一个结果。 例如:
+-----+
| Row |
+-----+
| x1 |
| x1 |
| x2 |
| x3 |
| x4 |
| x4 |
| x5 |
+-----+
输出为x1,x2,x3,x4,x5。 我怎么能这样做?
答案 0 :(得分:2)
您可以将不同:
添加到您的SQL查询中select distinct(row) from table
或在php端使用 array_unique :
$unique_values = array_unique($rows);