SQL How to remove duplicates within select query?

前端 未结 7 895
甜味超标
甜味超标 2021-01-04 07:05

I have a table which looks like that:

\"alt

As You see, there are some date duplicates, so how t

7条回答
  •  轮回少年
    2021-01-04 07:08

    Do you need any other information except the date? If not:

    SELECT DISTINCT start_date FROM table;
    

提交回复
热议问题