Last Updated:
2020-11-07
Why do we have to learn database
A lot of websites are apps are using database to manage data
What you'll learn
Understand what is data/database
Design database
SQL
Data
Databa
English
Create an Amazon databases using
template
.
Answer sample is
here
English
Go to
DB Fiddle website
Copy Database from
here
Write the following questions using SQL:
/* show all data in the students table */
/* get a list of favorite subjects */
/* Get a list of students born in October */
/* get list of students born in either November (nov) or December (dec) */
/* Get the height of the shortest student */
/* Get the height of the tallest student */
/* Get the list of students that submitted the form first */
The answers are :
SELECT * FROM students
SELECT subject FROM students
SELECT name FROM students WHERE month = "oct"
SELECT name FROM students WHERE month = "nov" OR month = "dec";
SELECT MIN(height) FROM students
SELECT MAX(height) FROM students
SELECT * FROM students ORDER BY timestamp ASC;