Hi,
I am just trying to update(Replace) column values of source table
Source table
SNO | Name | Exam Status |
---|---|---|
1 | A | Pass |
2 | B | Pass |
3 | C | Pass |
4 | D | Pass |
Target
SNO | Name | Exam Status |
---|---|---|
1 | A | Fail |
2 | B | Fail |
3 | C | Fail |
4 | D | Fail |
What kind of transformations do we need to achieve this ?
And also if i want to change the column values based on any condition ? How can we do that ?