SQL

  • Thread starter Thread starter Noemi
  • Start date Start date
N

Noemi

What is an sql that I can use to update any records that has a field with
more than 8 digits?
 
I would like that field that has more than 8 digits to update another field
to the word "Issue"
 
UPDATE MyTable
SET SomeField = "Issue"
WHERE Len(SomeOtherField) > 0
 
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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top