我正在尝试从 mysql db 中选择不同的记录。但我无法做到这一点。
这是表格:
id, f2, f3, f4
1, a1, mytext, t1
2, a2, mytext, t2
3, a2, mytext, t3
4, a3, mytext, t4
5, a1, mytext, t5
6, a5, mytext, t6
我正在尝试获得不同的 f2 结果:
id, f2, f3, f4
3, a2, mytext, t3
4, a3, mytext, t4
5, a1, mytext, t5
6, a5, mytext, t6
可以给我什么是确切的 SQL 查询?