Zaktualizuj jedną kolumnę z innej kolumny w tej samej tabeli

select * from stuff

update stuff
set TYPE1 = TYPE2
where TYPE1 is null;

update stuff
set TYPE1 = TYPE2
where TYPE1 ='Blank';

select * from stuff
Nervous Narwhal