I have an update which is very simple:
UPDATE export SET export.level_2 = "20100527", export.level_3 = [level_2], export.level_4 = [level_3], export.level_5 = [level_4], export.level_6 = [level_5];
What I want to do is run this query from a form. The problem is, I cannot update using the field contents, because rather than (for example) updating [level_3] to whatever is in [level_2] the query puts the text "[level_2]" into the field.
Is there a way around this?
UPDATE export SET export.level_2 = "20100527", export.level_3 = [level_2], export.level_4 = [level_3], export.level_5 = [level_4], export.level_6 = [level_5];
What I want to do is run this query from a form. The problem is, I cannot update using the field contents, because rather than (for example) updating [level_3] to whatever is in [level_2] the query puts the text "[level_2]" into the field.
Is there a way around this?