mysql,为这个案例制作一个组

时间:2013-04-08 14:30:32

标签: mysql

我有这些数据:

column1  |  column2  
____________________
15           2013
16           2012
15           2012 //repeated
15           2012 //repeated
...
...

我想得到这个结果

15     2013
16     2013
15     2012  //not repeated

1 个答案:

答案 0 :(得分:4)

如何使用DISTINCT?由于两行在column1和column2上具有相同的值。

SELECT DISTINCT Col1, Col2
FROM   TableName