Looking at your SQL statement:<br><br>create
table COFFEES2 (COFFEE_NAME2 VARCHAR (32), Make,
flavour)<br><br>The Make and flavour fields have no type definition.
See how COFFEE_NAME2 is of type VARCHAR? Each field
you define has to have a type definition similar to
this. I suggestion that you either get a book or do
some research on SQL statements in order to understand
how SQL works.