You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
247 B
SQL

UPDATE all_projects
set description = TRIM(both ' ' from description)
where description rlike '^ ' or description rlike ' $';
UPDATE all_projects
set description = 'Soil/Footings'
where description in
(
'Soils/Footings'
);