| Posted by Erland Sommarskog on 03/10/07 08:44 
Chris (cjscully@gmail.com) writes:> Is there a way to select records that do not contain a certain
 > character string in char, vchar or text fields?  For example records
 > where the email field does not contain the "@" character.  Can't find
 > it in the BoL.
 
 A second alternative to Matthew's:
 
 SELECT ... FROM tbl WHERE col NOT LIKE '%@%'
 
 
 --
 Erland Sommarskog, SQL Server MVP, esquel@sommarskog.se
 
 Books Online for SQL Server 2005 at
 http://www.microsoft.com/technet/prodtechnol/sql/2005/downloads/books.mspx
 Books Online for SQL Server 2000 at
 http://www.microsoft.com/sql/prodinfo/previousversions/books.mspx
  Navigation: [Reply to this message] |