The SQL Query Language
To find all 18 year old students, we can write:
SELECT *
FROM Students
WHERE age=18
To find just names and logins, replace the first line:
SELECT name, login
Previous slide
Next slide
Back to first slide
View graphic version