Skip to content

Instantly share code, notes, and snippets.

@databraineo
Created August 16, 2019 08:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save databraineo/ab2df3a7fcab58e584b864181b6731e2 to your computer and use it in GitHub Desktop.
Save databraineo/ab2df3a7fcab58e584b864181b6731e2 to your computer and use it in GitHub Desktop.
Code examples for SQL 1x1 blog-article - 06
SELECT
ArtistId,
Name
FROM Artist
WHERE Name LIKE 'A%' AND NOT Name LIKE '_c%';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment