Query to return 1 instance of a record with duplicates

前端 未结 6 1297
耶瑟儿~
耶瑟儿~ 2020-12-11 22:36

INFO: I am working with Microsoft SQL.
Ok the title is confusing but here is an example of the table I\'m working with:

ID    Value    Signal    Read             


        
6条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-11 23:23

    SELECT
      ID, Value, Signal, Read, Firmware, Date, Time
    FROM
      ...
    GROUP BY
      ID, Value
    

提交回复
热议问题