79565127

Date: 2025-04-09 18:54:58
Score: 1.5
Natty:
Report link

The one answer I see here doesnt work for me but I am using T-SQL so maybe this is for some other database outside of MS SQL Server. Anyhow for T-SQL this should work

CASE WHEN LEN(EmailAddresses) > 50 THEN SUBSTRING(EmailAddresses, 1, 47) + '...' ELSE EmailAddresses END AS EmailAddresses

Reasons:
  • Blacklisted phrase (1): doesnt work
  • Whitelisted phrase (-2): this should work
  • RegEx Blacklisted phrase (2): doesnt work for me
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Deathstalker