Dear Grok Academy users,
We're updating the Grok Academy Terms of Use and associated policies to address updates to our product
We've outlined the main changes below.
  • We updated the ownership of the Grok Platform to KIK Innovation Limited.
  • We have added a third party customer support provider to our list of sub-processors (HubSpot).
  • We have added a list of all sub-processors Grok uses that includes detail on what the purpose of the data collection is and where your data is stored.
  • Minor updates to policy wording to ensure accuracy.
The updated Terms of Use and policies will go into effect on 1 September 2025. You can read the complete updated Terms of Use and policies by visiting the link above.
By continuing to use Grok Academy past 1 September 2025, you accept the updated Terms of Use and acknowledge receipt of the updated policies. If you don't agree, you'll need to stop using Grok Academy and delete your account by following the instructions found here.

Thank you for using Grok Academy, your home for Digital Technologies education.

Beginners Databases - SQL

Module Topics SQL Skills
Getting data out of databases Single table SQL queries
  • Use single column SELECT queries
  • Recognise common syntax errors
  • Use multi-column SELECT queries
Data types and query filters Filtering query results against constant values
  • Recognise common data types
  • Use the * wildcard in queries
  • Use the WHERE clause to filter results
  • Recognise common string errors
  • Use integers and booleans in filter conditions
Filtering different data types Filtering results on a range of data types
  • Make comparisons on data types using (> < = <> >= <=)
  • Use dates and times in filter conditions
  • Use values stored in records within filter conditions
Using multiple filters Filtering results based on multiple conditions
  • Use the OR condition in query filters
  • Use the AND condition in query filters
  • Combine AND and OR to construct complex filters
Sorting results Ordering data in query results
  • Use the ORDER BY clause to sort results
  • Use filters with ORDER BY to sort filtered results
  • Use multiple fields to sort results