I want to remove the space after comma, in a column using SQL script. I am using oracle DB.
I want a space (after sathish, kumar, raghavan) to be removed from column 'name',
I want the table to look like,
likewise all the records to be modified. I tried, this query,
update incitable SET name = LTRIM(RTRIM(name));
But it didnt make any chages,
Please help on this.
Sorry for the grammar mistakes.
