0% found this document useful (0 votes)
21 views1 page

CREATE TABLE Film FNR

The document contains SQL commands to create a table named 'Film' with various attributes including title, year, country, genre, age rating, duration, and price. It also includes commands to insert data for 13 films into this table, detailing their respective attributes. The films range from different genres and years, with some having a specified price and others marked as NULL.

Uploaded by

Noah Luke
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
21 views1 page

CREATE TABLE Film FNR

The document contains SQL commands to create a table named 'Film' with various attributes including title, year, country, genre, age rating, duration, and price. It also includes commands to insert data for 13 films into this table, detailing their respective attributes. The films range from different genres and years, with some having a specified price and others marked as NULL.

Uploaded by

Noah Luke
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

-- Opprett ny tabell

CREATE TABLE Film (


FNr INT PRIMARY KEY,
Tittel VARCHAR(100),
År INT,
Land VARCHAR(50),
Sjanger VARCHAR(50),
Alder INT,
Tid INT,
Pris DECIMAL(10, 2) NULL
);

-- Legg til data i tabellen


INSERT INTO NyFilm (FNr, Tittel, År, Land, Sjanger, Alder, Tid, Pris) VALUES
(1, 'Casablanca', 1942, 'USA', 'Drama', 15, 102, 149.00),
(2, 'Fort Apache', 1948, 'USA', 'Western', 15, 127, NULL),
(3, 'Apocalypse Now', 1979, 'USA', 'Action', 18, 155, 123.00),
(4, 'Streets of Fire', 1984, 'USA', 'Action', 15, 93, NULL),
(5, 'High Noon', 1952, 'USA', 'Western', 15, 85, 123.00),
(6, 'Cinema Paradiso', 1988, 'Italia', 'Komedie', 11, 123, NULL),
(7, 'Asterix hos britene', 1988, 'Frankrike', 'Tegnefilm', 7, 78, 149.00),
(8, 'Veiviseren', 1987, 'Norge', 'Action', 15, 96, 87.00),
(9, 'Salmer fra kjøkkenet', 2002, 'Norge', 'Komedie', 7, 94, 149.00),
(10, 'Anastasia', 1997, 'USA', 'Tegnefilm', 7, 94, 123.00),
(11, 'La Grande bouffe', 1973, 'Frankrike', 'Drama', 15, 129, 87.00),
(12, 'The Blues Brothers', 1980, 'USA', 'Komedie', 11, 133, 135.00),
(13, 'Beatles: Help', 1965, 'Storbritannia', 'Musikk', 11, 144, NULL);

You might also like