Answers for "update single column in a table with different values based on values of another column"

SQL
0

update one column from another column in same table

select * from stuff

update stuff
set TYPE1 = TYPE2
where TYPE1 is null;

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

select * from stuff
Posted by: Guest on August-29-2021

Code answers related to "update single column in a table with different values based on values of another column"

Code answers related to "SQL"

Browse Popular Code Answers by Language