Skip to content

Latest commit

 

History

History
35 lines (28 loc) · 1.58 KB

00-Beginning.md

File metadata and controls

35 lines (28 loc) · 1.58 KB

Beginning

Basic SQL Statements

By the end of this section, you will be able to:

  1. Describe the structure of a SQL query
  2. Query a table to retrieve existing data
  3. Filter data in a query using basic operators, including:
    • SELECT, FROM, WHERE, AND, BETWEEN, NOT BETWEEN, >, <, =, !=, and DISTINCT
  4. Explain how to read an entity relationship diagram (ERD)

Prerequisites

  • No SQL experience needed! Welcome!

Lesson

Objective 1: Describe the structure of a SQL query

SELECT * FROM employees;

Objective 2: Query a table to retrieve existing data

Objective 3: Filter data in a query using basic operators, including: SELECT, FROM, WHERE, AND, DISTINCT

Objective 4: Explain how to read an entity relationship diagram (ERD)

Assessment