Skip to content
Advertisement

Use of ORDER BY returns column filled with NULL

I have to do the following exercise:

Write a SQL query to list the names of all people who starred in a movie released in 2004, ordered by birth year. Your query should output a table with a single column for the name of each person. People with the same birth year may be listed in any order. No need to worry about people who have no birth year listed, so long as those who do have a birth year are listed in order. If a person appeared in more than one movie in 2004, they should only appear in your results once.

I have the following schema in my movies.db database:

When I run this query:

I get a column filled with NULL values:

enter image description here

However, if I leave out the line ORDER BY birth, that column shows the values correctly (although unsorted). What should I do to solve this issue ?

Advertisement

Answer

When sorted normally, the NULL’s are considered as lowest values.
So when you order ascending (the default) then the NULL’s come first.

But the field birth is a numeric type.
So sorting the negative value DESCENDING will push those pesky nullies down.

Simplified test

id | birth
-: | ----:
 3 |    16
 2 |    42
 1 |   100
 4 |  null

db<>fiddle here

And another way is to change the null’s to an impossible high value.

Or use the newer ASC NULLS LAST syntax.

User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement