I am trying to insert values from one table in to the other, with an additonal parameter that is required. For instance:
INSERT INTO table1(someInt, someOtherInt, name, someBit)
SELECT someInt, someOtherInt, name FROM table2
someBit is not allowed to be null, and I need to set it to False, but I am not quite sure how use it in the same INSERT statement. (Im using SQL 2005 if it matters)
edit: Ouch...looks like i threw out filet mignon to lions :-)