I have a database with email addresses in it.
My company is changing our email address convention from:
first_initiallast_name@mycompany.com
to
first_name.last_name@contoso.com
I'd like to write a SQL statement to update all the email addresses in one shot in this database. First and last name are columns in the same table (we'll call it MY_TABLE for simplicity's sake).
How could I do this in an Oracle SQL statement?