SQL

N

Noemi

What is an sql that I can use to update any records that has a field with
more than 8 digits?
 
N

Noemi

I would like that field that has more than 8 digits to update another field
to the word "Issue"
 
J

John W. Vinson

I would like that field that has more than 8 digits to update another field
to the word "Issue"

UPDATE yourtable
SET anotherfield = "Issue"
WHERE Len([thatfield]) > 8
 
Top