Expand|Select|Wrap|Line Numbers
- UPDATE ibf_members;
- SET org_perm_id = ',8,12,'
- WHERE last_post < timestampadd(SQL_TSI_DAY, -30,
- current_date())
So if our members and their respective masks (masks used to visit private forums) are: (with 6 being a member in good standing):
Tara 6, 9, 10
Sue 6, 8, 9, 10
Gina 6, 10
I want to change their masks to be:
Tara 9, 10, 12
Sue 8, 9, 10, 12
Gina 10, 12
with a find "6" and replace with "12"??? Is there find and replace functionality in SQL in a field or just the ability to add one value to a field without changing the existing data?