Skip to main content
Journey Uncommon Logo
JourneyUncommon
mediumSQLgenerated columnsSingle-choice MCQ

Given this table, what value ends up stored in `area` for an inserted row with width=4, height=5?

CREATE TABLE rect ( width integer, height integer, area integer GENERATED ALWAYS AS (width * height) STORED );