方法一:group by (取最小的id)
select min(id) id,T from Table_1 group by T
方法二:union (不需要id)
select T from Table_1 where 1=0
union
select T from Table_1
方法三:DISTINCT
select DISTINCT T from Table_1
方法一:group by (取最小的id)
select min(id) id,T from Table_1 group by T
方法二:union (不需要id)
select T from Table_1 where 1=0
union
select T from Table_1
方法三:DISTINCT
select DISTINCT T from Table_1