mraetrudeaujr
Technical User
I'm trying to update a new field (option group generated) from a "check box" field. I thought that an SQL statement would work best, but I'm not that good at building one from scratch. The following is my attempt at it:
Table name = 2005 LOG
New field name (option group) = TempFileUsed
Old field name (check box) = TempFileUsed1
I'm sure that something is missing, but at least I'm taking a stab at it, right? Thanks for the help everybody.
Table name = 2005 LOG
New field name (option group) = TempFileUsed
Old field name (check box) = TempFileUsed1
Code:
UPDATE [2005 LOG].[TempFileUsed]
SET TempFileUsed = 1,
WHERE TempFileUsed1 = 'TRUE';
FROM [2005 LOG]
I'm sure that something is missing, but at least I'm taking a stab at it, right? Thanks for the help everybody.