Query
: a request for data or information from a databaseBasic Format
- SELECT
- FROM
- WHERE
- GROUP BY
- HAVING
- ORDER BY
required
in every queryrequired
in every querynot required
in every querynot required
in every querynot required
in every queryGROUP BY
not required
in every queryExample
SELECT * FROM movie_list WHERE genre = 'Horror' GROUP BY pg ORDER BY rating
Translation
= Retrieve
SELECT
all*
columns
FROM
the table calledmovie_list
whichWHERE
is under 'Horror'.
Then group themGROUP BY
PG
and order them byORDER BY
highest ranking to lowest