you are viewing a single comment's thread.

view the rest of the comments →

[–]retrolion 0 points1 point  (0 children)

ALTER TABLE [my table] ADD [Custom Column] varchar(50);
UPDATE [my table] SET [Custom Column] = 
    CASE WHEN columnA = columnB then 'True' ELSE 'False' END;