У меня нет установки для тестирования, но должно работать что-то вроде следующего:
select a.id,a.col1,b.col2
into fixed_table
from table1 a
inner join table1 b on a.id = b.id
where a.col1 is not null
and b.col2 is not null;
Это должно создать fixed_table из table1.Если вы хотите переместить данные обратно в table1, вы можете сделать:
drop table1;
select id, col1, col2
from fixed_table
into table1;