diff --git a/movies/movies.sql b/movies/movies.sql new file mode 100644 index 0000000..3bf8309 --- /dev/null +++ b/movies/movies.sql @@ -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 \ No newline at end of file