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,'\.+','');

Category: Uncategorized

Tags:

Leave a Reply

Article by: Shadab Mohammad