Intermediate SQL
Jasmin Ludolf
Data Science Content Developer, DataCamp
-- Order of execution
SELECT name
FROM people
LIMIT 10;
LIMIT
limits how many results we returnSELECT
statementSELECT nme
FROM people;
field "nme" does not exist
LINE 1: SELECT nme
^
HINT: Perhaps you meant to reference the field "people.name".
SELECT title, country duration
FROM films;
syntax error at or near "duration"
LINE 1: SELECT title, country duration
^
SELCT title, country, duration
FROM films;
syntax error at or near "SELCT"
LINE 1: SELCT title, country, duration
^
Most common errors:
Learn by making mistakes
Intermediate SQL