79548599

Date: 2025-04-01 12:19:32
Score: 0.5
Natty:
Report link
SELECT 
    substring(email_from FROM '.*<([^@]+@[^>]+)>') AS domain
FROM 
    my_table;

It will match any character before the "<" making it more flexible.

It also captures the full email address inside the < > and then then extracts the domain.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Deepak Saini