~sql 小疑点(!)

~~~sql 小问题(在线等!)table1字段:usernameuserpasstypesunsunyysunsunyypopouupopouu如何将内容重复的列

~~~sql 小问题(在线等!)
table1

字段:     username   userpass   type

                sun               sun           yy
                sun               sun           yy
                po                 po             uu
                po                 po             uu

如何将内容重复的列合为一列
实现后:
                sun             sun               yy
                po               po                 po

[解决办法]
select distinct(*) from table1
[解决办法]
select distinct * from table1