Skip to content

Instantly share code, notes, and snippets.

@misho-kr
Created March 1, 2021 04:11
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 misho-kr/c242c1b3e3467fa8d6b64ccb1de53cdc to your computer and use it in GitHub Desktop.
Save misho-kr/c242c1b3e3467fa8d6b64ccb1de53cdc to your computer and use it in GitHub Desktop.
Summary of "Introduction to SQL" course on Datacamp

This course teaches syntax in SQL shared by many types of databases, such as PostgreSQL, MySQL, SQL Server, and Oracle. This course teaches you everything you need to know to begin working with databases today!

Lead by Nick Carchedi, Product Manager at DataCamp

Selecting columns

Brief introduction to working with relational databases. Learn about their structure, how to talk about them using database lingo, and how to begin an analysis using simple SQL commands to select and summarize columns from database tables.

Filtering rows

Filter tables for rows satisfying some criteria of interest. Use basic comparison operators, combine multiple criteria, match patterns in text, and much more.

Aggregate Functions

Use aggregate functions to summarize data and gain useful insights. Learn about arithmetic in SQL and how to use aliases to make your results more readable.

Sorting and grouping

Brief introduction to sorting and grouping your results.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment