I have a university table that consists of prospective student information. I need to populate the email address column and the format is first_name.last_name@su.edu.
I have been trying to used the CONCAT method but every time I execute the code I run into an error stating that 'invalid number of arguements'.
SELECT CONCAT(first_name, '.', last_name, '@su.edu') AS prospect_email FROM prospect;
The expected output should be first_name.last_name@su.edu.