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

WebServices/ProgrammingHomeworks2020/HW03 (last edited 2020-10-06 16:23:36 by scot)