I'm having a bit of a problem with some SQL. I'm trying to do a match from one table to another. It works perfectly except for the last line. As soon as I add it NOTHING gets updated. I'm using SQL ...
OK, I have a table of names. Lets say we want to do secret santa assignments for whatever reason. Code: --// Create our SOURCE table DECLARE @t1 TABLE ( id int, name nvarchar(16), scrambledOrderName ...