HW3

To reproduce what I did in class:

   1 Create a Database with a table called movies
   2 CREATE TABLE movies (    
   3     ID  int primary key identity,
   4     Title       varchar(100) NOT NULL,
   5     ReleaseDate         date NOT NULL,
   6     Genre       varchar(100) NOT NULL
   7 );

Points