mysql DISTINCT两次显示相同的内容

时间:2020-09-28 11:04:19

标签: mysql

我有一个表,记录超过5k。字段payment_mode具有3种类型-A,B,C。 当我查询此: 从MY_TABLE中选择DISTINCT payment_mode可获得以下结果:

payment_mode    
A
B
C
A
B
C

Shouldn't it be just showing:
A
B
C

这会导致在应用程序前端报告错误。

1 个答案:

答案 0 :(得分:-1)

从MY_TABLE中选择DISTINCT(付款方式)