I am running the query below in Sybase application which works great but the consequences are when the first name is written like this, “ADNAN RAZA” it makes it “Adnan raza”. Any function which I can use here to detect the position of letter after space or – and update. Can’t do it manually there are more than 100k records.
update master set firstname =
upper(left(firstname,1))+lower(substr(firstname,2));
There is no solution for this at db level as it stands now.