[Previous slide] [Next slide] Java and Database Connectivity

Create

Creates a new table (and other things...)

    create table WORKSHOP 
    (
    Workshop int not null primary key,
    Tutor varchar( 40) not null,
    Title varchar( 80) not null,
    Venue varchar( 8)
    );