Site icon EasyOraDBA

Remove Comma from Column in Oracle

Remove Comma Character from Column
— Use the below sql query, which will remove , from the string
UPDATE data_dict SET src_value = regexp_replace(src_value,'\,+','');
— Use the below sql query, which will remove . from the string

UPDATE data_dict SET src_value = regexp_replace(src_value,'\.+','');

Exit mobile version