Skip to content

Instantly share code, notes, and snippets.

@thebrettbarlow
Created February 27, 2019 03:46
Show Gist options
  • Save thebrettbarlow/03b8f6a1dea39beda699b423757ff9f3 to your computer and use it in GitHub Desktop.
Save thebrettbarlow/03b8f6a1dea39beda699b423757ff9f3 to your computer and use it in GitHub Desktop.
SELECT Id, FirstName, LastName, Email, Phone
FROM Contact
WHERE NOT (
FirstName LIKE 'B%' OR
FirstName LIKE 'C%'
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment