Answers for "sql distinct email regex"

SQL
0

sql distinct email regex

/*Return distinct email domain name using regular expression*/
SELECT DISTINCT (REGEXP_SUBSTR (EMAIL_ADDR, '(@)\w+[\.-]\w+\.?\w+\.?\w+')) 
FROM SCHEMA.TABLE_NAME;
Posted by: Guest on October-26-2020

Code answers related to "SQL"

Browse Popular Code Answers by Language