Skip to content

Instantly share code, notes, and snippets.

@KKcorps
Created September 28, 2020 18:05
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 KKcorps/646c06ac62db2668dfb5724bcca3552f to your computer and use it in GitHub Desktop.
Save KKcorps/646c06ac62db2668dfb5724bcca3552f to your computer and use it in GitHub Desktop.
-- Scalar Functions
SELECT UPPER(playerName) FROM baseballStats
SELECT SUBSTR(playerName, 2, 11) FROM baseballStats
SELECT CONCAT(firstName, lastName, '-') FROM baseballStats
-- Non scalar Functions
SELECT SUM(playerScore) FROM baseballStats GROUP BY playerName
SELECT COUNT(*) FROM baseballStats
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment