Calculate the smallest duration from the movies table
movies
id (integer)
title (string)
year (integer)
duration (integer)
description (text)
image (string)
director_id (integer)
directors
id (integer)
name (string)
dob (date)
bio (text)
image (string)
actors
id (integer)
name (string)
dob (date)
bio (text)
image (string)
characters
id (integer)
actor_id (integer)
movie_id (integer)
name (string)
📖Method
You can calculate the smallest/oldest value in a particular column within a collection with .minimum. It returns a single value (of whatever datatype the column is).