Get startedGet started for free

Replacing NULL values

You are interested in knowing what companies US customers work for. Not all customers have provided the company they work for at the moment they signed up at eSymphony. This means there are some NULL values in the data. You want any eSymphony employees that look at your query later on to understand the result. This is why you decide to add a No affiliation tag to customers that haven't completed the Company field.

There are two functions, both introduced in the video, that you can use to achieve this.

This exercise is part of the course

Introduction to Oracle SQL

View Course

Hands-on interactive exercise

Have a go at this exercise by completing this sample code.

-- Replace NULL values in the Company field
SELECT ___ AS Affiliation, COUNT(*)
FROM Customer
-- Filter on the country USA
___
-- Group by company
GROUP BY ___
Edit and Run Code