CommencerCommencer gratuitement

Categorize film certifications

You have an idea to group films into audience categories that will help simplify browsing. Films with certifications like G, PG, Approved, Passed, or GP should be labeled for kids. All other films will fall into a general "Other" category.

You need to generate this classification and sort the list.

Cet exercice fait partie du cours

Intermediate SQL with AI

Afficher le cours

Instructions

  • Write a prompt that classifies films into “Kids” if their certification is G, PG, Approved, Passed, or GP, otherwise label them “Other”.
  • Name the new category audience_segment.
  • Order the results by this new category in descending order, then by alphabetical film title.

Exercice interactif pratique

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

SELECT
  title,
  certification
FROM films;
Modifier et exécuter le code