movies.sql

This commit is contained in:
git-sandro 2026-02-12 15:03:03 +01:00
parent 0357388f9e
commit 33dcdcbb84

19
movies/movies.sql Normal file
View File

@ -0,0 +1,19 @@
/*CREATE TABLE movies
(
id INTEGER PRIMARY KEY,
year INTEGER,
score INTEGER,
title CHARACTER VARYING NOT NULL
);*/
/*INSERT INTO movies (id, year, score, title) VALUES
(1, 1976, 99, 'Taxi Driver'),
(2, 1978, 93, 'The Deer Hunter'),
(3, 1985, 98, 'Brazil'),
(4, 1990, 96, 'Goodfellas'),
(5, 1991, 76, 'Cape Fear'),
(6, 1995, 80, 'Casino'),
(7, 1995, 86, 'Heat'),
(8, 2000, 84, 'Meet the Parents');*/
SELECT * FROM movies