Table name: myTable, where I need to update the values of A with Null from the same column
Group Value
A 10
A NULL
A NULL
A 10
B 20
B 20
B 20
C 30
Expected:
Group Value
A 10
A 10
A 10
A 10
B 20
B 20
B 20
C 30
MY query:
Update myTable
Set myTable.Age = b.Age
FROM myTable b
WHERE A.Age is Null
I am getting relation doesn't exist.
What am I doing wrong?