Viewing 2 posts - 1 through 3 (of 3 total)
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...
March 15, 2026 at 4:00 pm
#4749053
#4749052