一张数据表中找出a字段相同,b字段不同的数据

2021-02-28 00:00:00 字段 数据表 找出

student表中数据如下:

《一张数据表中找出a字段相同,b字段不同的数据》

需要找出name相同,score不同的数据,sql如下:

SELECT a.name,a.score from student a,student b where a.name = b.name and a.score != b.score GROUP BY a.name, a.score

结果如下:

《一张数据表中找出a字段相同,b字段不同的数据》

    原文作者:一棵树7351
    原文地址: https://blog.csdn.net/u011821510/article/details/103997312
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。

相关文章