I am trying to copy one table to another and if one of the items from the original table is null insert a default value instead.
INSERT INTO Table2(ColA, ColB, ColC)
SELECT Table1.ColA, Table1.ColB, (if Table1.ColC is null {'NewValue'} else {Table1.ColC})
No idea if I am anywhere close to a right answer.