CommencerCommencer gratuitement

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.

Cet exercice fait partie du cours

Introduction to Oracle SQL

Afficher le cours

Exercice interactif pratique

Essayez cet exercice en complétant cet exemple de code.

-- Replace NULL values in the Company field
SELECT ___ AS Affiliation, COUNT(*)
FROM Customer
-- Filter on the country USA
___
-- Group by company
GROUP BY ___
Modifier et exécuter le code