I want to remove special characters form name excluding salutation part and Need to separate the first , last name and salutation.
Create table Employee_Name(Emp_Name varchar(20))
insert into Employee_Name values('Dr. Sana .Singh');
insert into Employee_Name values('Mrs. Ashley;');
insert into Employee_Name values('Mr. Simon-');
insert into Employee_Name values('Ms. Ale Martin galyx');
insert into Employee_Name values('Doctor. Blank Smith&');
I need output to be
Emp_Name Salutation First_Name Last_Name
Dr. Sana Singh Dr. Sana Singh
Mrs. Ashley Mrs. Ashley
Mr. Simon Mr. Simon
Ms. Ale Martin Ms. Ale Martin
Doctor. Blank Smith Doctor. Blank Smith
Thanks in advance