~~~sql 小问题(在线等!) 重发补充
table1
字段: id username userpass type
101 sun sun yy
102 sun sun yy
105 po po uu
106 po po uu
如何将内容重复的列合为一列
实现后:
101 sun sun yy
105 po po po
------解决方案--------------------select min(id), username , userpass , type group by username ,userpass ,type