N Noemi Sep 8, 2008 #1 What is an sql that I can use to update any records that has a field with more than 8 digits?
N Noemi Sep 8, 2008 #3 I would like that field that has more than 8 digits to update another field to the word "Issue"
D Douglas J. Steele Sep 8, 2008 #4 UPDATE MyTable SET SomeField = "Issue" WHERE Len(SomeOtherField) > 0
J John W. Vinson Sep 8, 2008 #5 I would like that field that has more than 8 digits to update another field to the word "Issue" Click to expand... UPDATE yourtable SET anotherfield = "Issue" WHERE Len([thatfield]) > 8
I would like that field that has more than 8 digits to update another field to the word "Issue" Click to expand... UPDATE yourtable SET anotherfield = "Issue" WHERE Len([thatfield]) > 8