I need only one row from multiple duplicate rows but the value should not missed in others fields
Current table:
Name ABC XYZ APT STA ZIP
--------------------------------
Computer 0 0 0 0 0
Computer 0 0 0 1 0
Computer 0 0 0 0 0
Computer 1 0 0 0 0
Computer 0 0 0 0 0
Result I want:
Name ABC XYZ APT STA ZIP
--------------------------------
Computer 1 0 0 1 0
1条答案
按热度按时间js5cn81o1#
As many already suggested, it is a trivial task.
SQL
Output