Quantcast
Channel: EasyOraDBA
Viewing all articles
Browse latest Browse all 263

Remove Comma from Column in Oracle

$
0
0

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



Viewing all articles
Browse latest Browse all 263

Trending Articles