• Here's one way of doing it. It may not be the most efficient way, so you'll want to test for performance if you're going to use it in production.

    SELECT Mynvarcharcol

    FROM Mytable

    WHERE Mynvarcharol LIKE '%[^,][^,][^,][^,]%'

    John