Forum Replies Created

Viewing 2 posts - 1 through 3 (of 3 total)

  • Reply To: Regex in SQL

    Great question about pattern matching in SQL Server. Here's what I'd recommend:

    For basic email validation, this pattern works well:

    SELECT *

    FROM users

    WHERE email LIKE '%@%.%'

    AND email NOT LIKE '%@%@%'

    AND email NOT...

  • Reply To: Regex in SQL

    Great question about pattern matching in SQL Server. Here's what I'd recommend:

    For basic email validation, this pattern works well:

    SELECT *

    FROM users

    WHERE email LIKE '%@%.%'

    AND email NOT LIKE '%@%@%'

    AND email NOT...

Viewing 2 posts - 1 through 3 (of 3 total)