Créer une adresse e-mail à partir du premier et du nom de famille dans SQL

# NB: This creates email addresses with the format
# first_name.last_name@company_name.com
# Name of table = names_table
# Name of column containing names = full_name
# Simply change the table and column name to what corresponds with your dataset

WITH temp_table AS (
	SELECT LEFT(full_name, STRPOS(primary_poc, ' ') -1 ) AS first_name,  
  			RIGHT(full_name, LENGTH(primary_poc) - STRPOS(primary_poc, ' ')) AS last_name, name
	FROM names_table)

SELECT CONCAT(first_name, '.', last_name, '@', 'company_name.com')
FROM temp_table;
Kwams