首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > SQL Server >

求一条语句!可能比较难!该如何处理

2012-01-08 
求一条语句!可能比较难!我有这样一张表表rrt_studentrrt_studentidstudnamemobile1张三139999999992张三13

求一条语句!可能比较难!
我有这样一张表

表   rrt_student

rrt_studentid         studname       mobile
            1                       张三             13999999999
            2                       张三             13888888888
            3                       李四             13555555555

我想查出这样的结果

rrt_studentid       studname
          1                         张三
          3                         李四

我就是查询只要一个人名不要重复的!

[解决办法]
select min(rrt_studentid) as rrt_studentid,stuname from rrt_student group by studname
[解决办法]
用max代替min也可以

热点排行