SQL für Fortgeschrittene
Jasmin Ludolf
Data Science Content Developer, DataCamp
-- Order of execution
SELECT name
FROM people
LIMIT 10;
LIMIT
begrenzt, wie viele Ergebnisse wir zurückgebenSELECT
deklariertSELECT 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
^
Die häufigsten Fehler:
Mit jedem Fehler wirst du lernen
SQL für Fortgeschrittene