I have these records on my Oracle database version 10G
Area Account Jan Feb Mar Apr ...... Dec
LA111 A100 50 50 50 55 50
LA112 A100 2 2 2 3 2
LA112 A200 75 75 80 65 90
LA111 A300 20 25 20 25 30
How can I merge Area LA111 and LA112 together such that I will end up with these records:
LA111 A100 52 52 52 58 52
LA112 A100 0 0 0 0 0
LA111 A200 75 75 80 65 90
LA111 A300 20 25 20 25 30
Any help will be greatly appreciated.
Area Account Jan Feb Mar Apr ...... Dec
LA111 A100 50 50 50 55 50
LA112 A100 2 2 2 3 2
LA112 A200 75 75 80 65 90
LA111 A300 20 25 20 25 30
How can I merge Area LA111 and LA112 together such that I will end up with these records:
LA111 A100 52 52 52 58 52
LA112 A100 0 0 0 0 0
LA111 A200 75 75 80 65 90
LA111 A300 20 25 20 25 30
Any help will be greatly appreciated.