CommencerCommencer gratuitement

Update the price of rentals

You just learned that there have been some updates for the rental pricing of your films. In this exercise you will leverage the UPDATE command to modify the rental prices by increasing the rental_rate with the following logic.

  • All films now cost 50 cents more to rent.
  • R Rated films will go up by an additional 1 dollar.

Cet exercice fait partie du cours

Applying SQL to Real-World Problems

Afficher le cours

Exercice interactif pratique

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

-- Increase rental_rate by 0.5 in the film table
UPDATE ___
SET ___ = ___;
Modifier et exécuter le code