
For the first part you would do something like this:
UPDATE iweb_conf_demo set Attendee_ribbons = NULL
This would set to NULL the Attendee_ribbons field in all of the records in the table, without any condition.
This is pretty basic. You should have a test database to try and learn.
For the second part you could write multiple updates or use a CASE construct to do it in one shot. You didn’t specify in which cases you want to update the field with 0020 and 0650.
If you are supposed to do this kind of task, you should start learning SQL.

Hi Carlos,
Thanks for the help.
No, I don’t get these types of requests normally but, I have tried to do SQL in a development environment. Unfortunately, I don’t always have a lot of time to devote to playing around with it.
Thanks again,
DJ

Hi Kyle,
The second part of your answer I had to tweak a little but it worked on a single record! I guess I’ll need to add commas separating if I have multiple records to update?
UPDATE iweb_conf_demo
SET iweb_conf_demo.Attendee_ribbons = ‘CODE’
where (iweb_conf_demo.ID = ‘##’)
Thanks!
Darnell
















