I did not test this myself, but you should be able to use the bitwise negation operator, ~ on a bit:
INSERT INTO MYTABLE (AllowEdit)
(SELECT ~PreventEdit FROM SourceTable)
I did not test this myself, but you should be able to use the bitwise negation operator, ~ on a bit:
INSERT INTO MYTABLE (AllowEdit)
(SELECT ~PreventEdit FROM SourceTable)